summaryrefslogtreecommitdiff
path: root/src/libunixonacid/textmessage_timed_handle.c
diff options
context:
space:
mode:
authorLaurent Bercot <ska-skaware@skarnet.org>2021-07-28 23:45:20 +0000
committerLaurent Bercot <ska@appnovation.com>2021-07-28 23:45:20 +0000
commit9592bfd0dda7c575de07bce2c7a81b8432d845a4 (patch)
tree57c66c3e0dfeb63cfd3ebfef18e30a2145ae3f88 /src/libunixonacid/textmessage_timed_handle.c
parentc15bccec3fd551583ff838673ba284ee6c7e788a (diff)
downloadskalibs-9592bfd0dda7c575de07bce2c7a81b8432d845a4.tar.xz
Huge incompatible changes.
- Obsolete skalibs/environ.h and skalibs/getpeereid.h removed. - rc4 and md5 removed. - All *_t types renamed to avoid treading on POSIX namespace. - subgetopt() renamed to lgetopt(). - signal functions reworked; skasigaction removed; sig_stack removed - Various functions removed: skaoffsetof(), selfpipe_untrap() - New posixplz function: munmap_void. Signed-off-by: Laurent Bercot <ska@appnovation.com>
Diffstat (limited to 'src/libunixonacid/textmessage_timed_handle.c')
-rw-r--r--src/libunixonacid/textmessage_timed_handle.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/libunixonacid/textmessage_timed_handle.c b/src/libunixonacid/textmessage_timed_handle.c
index f8cf2dd..161314d 100644
--- a/src/libunixonacid/textmessage_timed_handle.c
+++ b/src/libunixonacid/textmessage_timed_handle.c
@@ -4,26 +4,26 @@
#include <skalibs/unix-timed.h>
#include <skalibs/textmessage.h>
-typedef struct textmessage_handler_blah_s textmessage_handler_blah_t, *textmessage_handler_blah_t_ref ;
+typedef struct textmessage_handler_blah_s textmessage_handler_blah, *textmessage_handler_blah_ref ;
struct textmessage_handler_blah_s
{
- textmessage_receiver_t *tr ;
- textmessage_handler_func_t_ref f ;
+ textmessage_receiver *tr ;
+ textmessage_handler_func_ref f ;
void *p ;
} ;
-static int getfd (textmessage_handler_blah_t *blah)
+static int getfd (textmessage_handler_blah *blah)
{
return textmessage_receiver_fd(blah->tr) ;
}
-static ssize_t get (textmessage_handler_blah_t *blah)
+static ssize_t get (textmessage_handler_blah *blah)
{
return textmessage_handle(blah->tr, blah->f, blah->p) ;
}
-int textmessage_timed_handle (textmessage_receiver_t *tr, textmessage_handler_func_t_ref f, void *p, tain_t const *deadline, tain_t *stamp)
+int textmessage_timed_handle (textmessage_receiver *tr, textmessage_handler_func_ref f, void *p, tain const *deadline, tain *stamp)
{
- textmessage_handler_blah_t blah = { .tr = tr, .f = f, .p = p } ;
- return timed_get(&blah, (initfunc_t_ref)&getfd, (getfunc_t_ref)&get, deadline, stamp) ;
+ textmessage_handler_blah blah = { .tr = tr, .f = f, .p = p } ;
+ return timed_get(&blah, (init_func_ref)&getfd, (get_func_ref)&get, deadline, stamp) ;
}