diff options
author | sef <sef@FreeBSD.org> | 1998-10-15 04:31:44 +0000 |
---|---|---|
committer | sef <sef@FreeBSD.org> | 1998-10-15 04:31:44 +0000 |
commit | 9e0aee1ff0b7ec55e918acf765d503934323bcd9 (patch) | |
tree | 36d5dcc7d25ea819b1c7ad9da3e30949abe2918b /usr.bin/truss | |
parent | d13c281654349fe05761527b480b281cb9807f19 (diff) | |
download | FreeBSD-src-9e0aee1ff0b7ec55e918acf765d503934323bcd9.zip FreeBSD-src-9e0aee1ff0b7ec55e918acf765d503934323bcd9.tar.gz |
Add lstat() as a known system call.
Diffstat (limited to 'usr.bin/truss')
-rw-r--r-- | usr.bin/truss/syscalls.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/usr.bin/truss/syscalls.c b/usr.bin/truss/syscalls.c index cf1db2c..f6c7596 100644 --- a/usr.bin/truss/syscalls.c +++ b/usr.bin/truss/syscalls.c @@ -31,7 +31,7 @@ #ifndef lint static const char rcsid[] = - "$Id: syscalls.c,v 1.4 1998/01/05 07:30:25 charnier Exp $"; + "$Id: syscalls.c,v 1.5 1998/07/06 21:01:48 bde Exp $"; #endif /* not lint */ /* @@ -67,6 +67,8 @@ struct syscall syscalls[] = { { { Int, 0}, {Ptr | OUT , 1 }}}, { "stat", 1, 2, { { String | IN, 0 }, { Ptr | OUT, 1 }}}, + { "lstat", 1, 2, + { { String | IN, 0 }, { Ptr | OUT, 1 }}}, { "linux_newstat", 1, 2, { { String | IN, 0 }, { Ptr | OUT, 1 }}}, { "linux_newfstat", 1, 2, |