diff options
author | Ulrich Drepper <drepper@redhat.com> | 2006-01-18 17:43:55 -0800 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-01-18 19:20:29 -0800 |
commit | 4f085507231e8003c66ed12e38c73b76e938ee95 (patch) | |
tree | 313adf0043c586fa751d8e750e54d6d27d2a0087 /include | |
parent | 5590ff0d5528b60153c0b4e7b771472b5a95e297 (diff) | |
download | linux-4f085507231e8003c66ed12e38c73b76e938ee95.tar.gz |
[PATCH] vfs: *at functions: i386
Wire up the x86 syscalls
Signed-off-by: Ulrich Drepper <drepper@redhat.com>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'include')
-rw-r--r-- | include/asm-i386/unistd.h | 15 |
1 files changed, 14 insertions, 1 deletions
diff --git a/include/asm-i386/unistd.h b/include/asm-i386/unistd.h index 481c3c0ea720..e3028aaf6d83 100644 --- a/include/asm-i386/unistd.h +++ b/include/asm-i386/unistd.h @@ -300,8 +300,21 @@ #define __NR_inotify_add_watch 292 #define __NR_inotify_rm_watch 293 #define __NR_migrate_pages 294 +#define __NR_openat 295 +#define __NR_mkdirat 296 +#define __NR_mknodat 297 +#define __NR_fchownat 298 +#define __NR_futimesat 299 +#define __NR_newfstatat 300 +#define __NR_unlinkat 301 +#define __NR_renameat 302 +#define __NR_linkat 303 +#define __NR_symlinkat 304 +#define __NR_readlinkat 305 +#define __NR_fchmodat 306 +#define __NR_faccessat 307 -#define NR_syscalls 295 +#define NR_syscalls 308 /* * user-visible error numbers are in the range -1 - -128: see |