Archived
2
0
This repository has been archived on 2025-06-08. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
2025-06-04 20:36:23 -03:00

30 lines
510 B
C

/*
* linux/include/asm-mips/namei.h
*
* Included from linux/fs/namei.c
*/
#ifndef __ASM_NAMEI_H
#define __ASM_NAMEI_H
#include <linux/config.h>
/* Only one at this time. */
#define IRIX32_EMUL "usr/gnemul/irix/"
#ifdef CONFIG_BINFMT_IRIX
static inline char *__emul_prefix(void)
{
if (current->personality != PER_IRIX32)
return NULL;
return IRIX32_EMUL;
}
#else /* !defined(CONFIG_BINFMT_IRIX) */
#define __emul_prefix() NULL
#endif /* !defined(CONFIG_BINFMT_IRIX) */
#endif /* __ASM_NAMEI_H */