move sys_shmget() into arch-dependent code

This commit is contained in:
NAKAMURA Gou
2016-03-17 21:22:35 +09:00
parent 1761acc4c3
commit d65135c040
3 changed files with 31 additions and 16 deletions

View File

@ -364,5 +364,7 @@ void reset_cputime();
void set_cputime(int mode);
intptr_t do_mmap(intptr_t addr0, size_t len0, int prot, int flags, int fd,
off_t off0);
typedef int32_t key_t;
int do_shmget(key_t key, size_t size, int shmflg);
#endif