summaryrefslogtreecommitdiff
path: root/src/libunixonacid/timed_getlnmax.c
diff options
context:
space:
mode:
authorLaurent Bercot <ska-skaware@skarnet.org>2017-02-17 22:30:53 +0000
committerLaurent Bercot <ska-skaware@skarnet.org>2017-02-17 22:30:53 +0000
commitfdffefb8032922ce7ffe4c00816072a8ff2148fc (patch)
treebc7313151a429c45d8bab8ad8b9dd32f4e51335f /src/libunixonacid/timed_getlnmax.c
parenta896ca2a8c617e5e00ffd5fc9e69331ad754e5b3 (diff)
downloadskalibs-fdffefb8032922ce7ffe4c00816072a8ff2148fc.tar.xz
More types changes
New disize Add size_t to the autotypes list Delete redundant and replace-libc files dev_t/ino_t pass Big size_t pass More things missing, still not operational yet
Diffstat (limited to 'src/libunixonacid/timed_getlnmax.c')
-rw-r--r--src/libunixonacid/timed_getlnmax.c11
1 files changed, 6 insertions, 5 deletions
diff --git a/src/libunixonacid/timed_getlnmax.c b/src/libunixonacid/timed_getlnmax.c
index 2a8fab3..1d89d85 100644
--- a/src/libunixonacid/timed_getlnmax.c
+++ b/src/libunixonacid/timed_getlnmax.c
@@ -1,5 +1,6 @@
/* ISC license. */
+#include <sys/types.h>
#include <skalibs/allreadwrite.h>
#include <skalibs/buffer.h>
#include <skalibs/functypes.h>
@@ -11,8 +12,8 @@ struct blah_s
{
buffer *b ;
char *d ;
- unsigned int max ;
- unsigned int w ;
+ size_t max ;
+ size_t w ;
char sep ;
} ;
@@ -21,15 +22,15 @@ static int getfd (struct blah_s *blah)
return buffer_fd(blah->b) ;
}
-static int get (struct blah_s *blah)
+static ssize_t get (struct blah_s *blah)
{
return sanitize_read(getlnmax(blah->b, blah->d, blah->max, &blah->w, blah->sep)) ;
}
-int timed_getlnmax (buffer *b, char *d, unsigned int max, unsigned int *w, char sep, tain_t const *deadline, tain_t *stamp)
+ssize_t timed_getlnmax (buffer *b, char *d, size_t max, size_t *w, char sep, tain_t const *deadline, tain_t *stamp)
{
struct blah_s blah = { .b = b, .d = d, .max = max, .w = *w, .sep = sep } ;
- register int r = timed_get(&blah, (initfunc_t_ref)&getfd, (initfunc_t_ref)&get, deadline, stamp) ;
+ ssize_t r = timed_get(&blah, (initfunc_t_ref)&getfd, (getfunc_t_ref)&get, deadline, stamp) ;
*w = blah.w ;
return r ;
}