]>
git.saurik.com Git - apple/xnu.git/blob - bsd/sys/lctx.h
2 * $Id: lctx.h,v 1.1.6.2 2006/03/03 23:20:46 msteil Exp $
8 #include <sys/syscall.h>
14 return (syscall(SYS_getlcid
, pid
));
18 setlcid(pid_t pid
, pid_t lcid
)
20 return (syscall(SYS_setlcid
, pid
, lcid
));
24 #define LCID_PROC_SELF (0)
25 #define LCID_REMOVE (-1)
26 #define LCID_CREATE (0)
28 #endif /* !_SYS_LCTX_H_ */