Add prototypes for linux_pread and linux_pwrite.
PR: 17991 Submitted by: Geoffrey Speicher <geoff@caribbean.sea-incorporated.com>
This commit is contained in:
parent
fddde8b056
commit
6037da7d24
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=63284
@ -266,8 +266,10 @@
|
||||
178 STD LINUX { int linux_rt_sigqueueinfo(void); }
|
||||
179 STD LINUX { int linux_rt_sigsuspend(linux_sigset_t *newset, \
|
||||
size_t sigsetsize); }
|
||||
180 STD LINUX { int linux_pread(void); }
|
||||
181 STD LINUX { int linux_pwrite(void); }
|
||||
180 STD LINUX { int linux_pread(int fd, char *buf, size_t nbyte, \
|
||||
off_t offset); }
|
||||
181 STD LINUX { int linux_pwrite(int fd, const char *buf, \
|
||||
size_t nbyte, off_t offset); }
|
||||
182 STD LINUX { int linux_chown(char *path, int uid, int gid); }
|
||||
183 STD LINUX { int linux_getcwd(char *buf, unsigned long bufsize); }
|
||||
184 STD LINUX { int linux_capget(void); }
|
||||
|
@ -266,8 +266,10 @@
|
||||
178 STD LINUX { int linux_rt_sigqueueinfo(void); }
|
||||
179 STD LINUX { int linux_rt_sigsuspend(linux_sigset_t *newset, \
|
||||
size_t sigsetsize); }
|
||||
180 STD LINUX { int linux_pread(void); }
|
||||
181 STD LINUX { int linux_pwrite(void); }
|
||||
180 STD LINUX { int linux_pread(int fd, char *buf, size_t nbyte, \
|
||||
off_t offset); }
|
||||
181 STD LINUX { int linux_pwrite(int fd, const char *buf, \
|
||||
size_t nbyte, off_t offset); }
|
||||
182 STD LINUX { int linux_chown(char *path, int uid, int gid); }
|
||||
183 STD LINUX { int linux_getcwd(char *buf, unsigned long bufsize); }
|
||||
184 STD LINUX { int linux_capget(void); }
|
||||
|
Loading…
Reference in New Issue
Block a user