Commit 43a14457 authored by Ulrich Drepper's avatar Ulrich Drepper Committed by Linus Torvalds

[PATCH] Re: utimes/futimes/lutimes syscalls

alpha, ia64, PA, sparc already export the existing "utimes()" system
call (using 'timeval[2]' instead of 'utimebuf' like the old "utime()").

Make it available on x86 too..
parent 4ad938aa
...@@ -876,6 +876,7 @@ ENTRY(sys_call_table) ...@@ -876,6 +876,7 @@ ENTRY(sys_call_table)
.long sys_clock_nanosleep .long sys_clock_nanosleep
.long sys_statfs64 .long sys_statfs64
.long sys_fstatfs64 .long sys_fstatfs64
.long sys_tgkill .long sys_tgkill /* 270 */
.long sys_utimes
nr_syscalls=(.-sys_call_table)/4 nr_syscalls=(.-sys_call_table)/4
...@@ -276,8 +276,9 @@ ...@@ -276,8 +276,9 @@
#define __NR_statfs64 268 #define __NR_statfs64 268
#define __NR_fstatfs64 269 #define __NR_fstatfs64 269
#define __NR_tgkill 270 #define __NR_tgkill 270
#define __NR_utimes 271
#define NR_syscalls 271 #define NR_syscalls 272
/* user-visible error numbers are in the range -1 - -124: see <asm-i386/errno.h> */ /* user-visible error numbers are in the range -1 - -124: see <asm-i386/errno.h> */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment