diff options
author | Hans-Peter Nilsson <hp@axis.com> | 2004-12-13 00:35:29 +0000 |
---|---|---|
committer | Hans-Peter Nilsson <hp@axis.com> | 2004-12-13 00:35:29 +0000 |
commit | bd6564f32ee106bc7083edb90fd7788d2900f18c (patch) | |
tree | 565608c72dbb6bf0cc68bfd89f9705a5b26789b2 /include/gdb | |
parent | 9ba3cd54a40075b6997960c5bbb36a0e3884ed62 (diff) | |
download | gdb-bd6564f32ee106bc7083edb90fd7788d2900f18c.tar.gz |
* callback.h (struct host_callback_struct): New member lstat.
(CB_SYS_lstat): New macro.
Diffstat (limited to 'include/gdb')
-rw-r--r-- | include/gdb/ChangeLog | 5 | ||||
-rw-r--r-- | include/gdb/callback.h | 4 |
2 files changed, 9 insertions, 0 deletions
diff --git a/include/gdb/ChangeLog b/include/gdb/ChangeLog index 06c02af58ad..d9654a793f1 100644 --- a/include/gdb/ChangeLog +++ b/include/gdb/ChangeLog @@ -1,3 +1,8 @@ +2004-12-13 Hans-Peter Nilsson <hp@axis.com> + + * callback.h (struct host_callback_struct): New member lstat. + (CB_SYS_lstat): New macro. + 2004-09-08 Michael Snyder <msnyder@redhat.com> Commited by Corinna Vinschen <vinschen@redhat.com> diff --git a/include/gdb/callback.h b/include/gdb/callback.h index aa956d05f47..fbaef249d9b 100644 --- a/include/gdb/callback.h +++ b/include/gdb/callback.h @@ -93,6 +93,7 @@ struct host_callback_struct void (*flush_stderr) PARAMS ((host_callback *)); int (*stat) PARAMS ((host_callback *, const char *, struct stat *)); int (*fstat) PARAMS ((host_callback *, int, struct stat *)); + int (*lstat) PARAMS ((host_callback *, const char *, struct stat *)); int (*ftruncate) PARAMS ((host_callback *, int, long)); int (*truncate) PARAMS ((host_callback *, const char *, long)); @@ -188,6 +189,9 @@ extern host_callback default_callback; #define CB_SYS_chmod 16 #define CB_SYS_utime 17 #define CB_SYS_time 18 + +/* More standard syscalls. */ +#define CB_SYS_lstat 19 /* Struct use to pass and return information necessary to perform a system call. */ |