This source file includes following definitions.
- arm_install_vdso
   1 
   2 #ifndef __ASM_VDSO_H
   3 #define __ASM_VDSO_H
   4 
   5 #ifdef __KERNEL__
   6 
   7 #ifndef __ASSEMBLY__
   8 
   9 struct mm_struct;
  10 
  11 #ifdef CONFIG_VDSO
  12 
  13 void arm_install_vdso(struct mm_struct *mm, unsigned long addr);
  14 
  15 extern unsigned int vdso_total_pages;
  16 
  17 #else 
  18 
  19 static inline void arm_install_vdso(struct mm_struct *mm, unsigned long addr)
  20 {
  21 }
  22 
  23 #define vdso_total_pages 0
  24 
  25 #endif 
  26 
  27 #endif 
  28 
  29 #endif 
  30 
  31 #endif