namei.h
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:1k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /* $Id: namei.h,v 1.17 2000/04/13 00:55:54 davem Exp $
  2.  * linux/include/asm-sparc64/namei.h
  3.  *
  4.  * Routines to handle famous /usr/gnemul/s*.
  5.  * Included from linux/fs/namei.c
  6.  */
  7. #ifndef __SPARC64_NAMEI_H
  8. #define __SPARC64_NAMEI_H
  9. #define SPARC_BSD_EMUL "usr/gnemul/sunos/"
  10. #define SPARC_SOL_EMUL "usr/gnemul/solaris/"
  11. static inline char * __emul_prefix(void)
  12. {
  13. switch (current->personality) {
  14. case PER_SUNOS:
  15. return SPARC_BSD_EMUL;
  16. case PER_SVR4:
  17. return SPARC_SOL_EMUL;
  18. default:
  19. return NULL;
  20. }
  21. }
  22. #endif /* __SPARC64_NAMEI_H */