tools: check result of write

and also use the platform helpers
This commit is contained in:
Christian Hergert
2019-06-03 12:40:48 -07:00
parent 690bf90a14
commit 7df9221f8b
2 changed files with 35 additions and 12 deletions

View File

@ -38,20 +38,20 @@
#else
size_t _sysprof_getpagesize (void);
ssize_t _sysprof_pread (int fd,
void *buf,
size_t count,
off_t offset);
void *buf,
size_t count,
off_t offset);
ssize_t _sysprof_pwrite (int fd,
const void *buf,
size_t count,
off_t offset);
const void *buf,
size_t count,
off_t offset);
ssize_t _sysprof_write (int fd,
const void *buf,
size_t count);
const void *buf,
size_t count);
gint32 _sysprof_getpid (void);
ssize_t _sysprof_sendfile (int out_fd,
int in_fd,
off_t *offset,
size_t count);
int in_fd,
off_t *offset,
size_t count);
#endif