gems-kernel/source/THIRDPARTY/xnu/bsd/sys/lctx.h

30 lines
458 B
C
Raw Normal View History

2024-06-03 11:29:39 -05:00
/*
* TODO: remove this file
*/
#ifndef _SYS_LCTX_H_
#define _SYS_LCTX_H_
#ifndef KERNEL
#include <sys/errno.h> /* errno, ENOSYS */
#include <sys/_types/_pid_t.h> /* pid_t */
static __inline pid_t
getlcid(pid_t pid)
{
errno = ENOSYS;
return -1;
}
static __inline int
setlcid(pid_t pid, pid_t lcid)
{
errno = ENOSYS;
return -1;
}
#endif
#define LCID_PROC_SELF (0)
#define LCID_REMOVE (-1)
#define LCID_CREATE (0)
#endif /* !_SYS_LCTX_H_ */