X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=lib%2Fsignals.h;h=3294293ca037187bea828bfe63692190fc5d013d;hb=6b900de4efd368be88ef3db88b1eff8f835a7cf7;hp=e09b04a0a27f0876c261ca97ef3eba9db2aa6d1e;hpb=5a08f9b04417ad1dc343861f3be3975a5cbd074c;p=sliver-openvswitch.git diff --git a/lib/signals.h b/lib/signals.h index e09b04a0a..3294293ca 100644 --- a/lib/signals.h +++ b/lib/signals.h @@ -1,5 +1,5 @@ /* - * Copyright (c) 2008, 2011 Nicira Networks. + * Copyright (c) 2008, 2011, 2013 Nicira, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -19,18 +19,17 @@ #include #include - -void signal_init(void); +#include +#include "type-props.h" struct signal *signal_register(int signr); -void signal_unregister(struct signal *); - bool signal_poll(struct signal *); void signal_wait(struct signal *); -const char *signal_name(int signum); +enum { SIGNAL_NAME_BUFSIZE = 7 + INT_STRLEN(int) + 1 }; +const char *signal_name(int signum, char *namebuf, size_t bufsize); void xsigaction(int signum, const struct sigaction *, struct sigaction *old); -void xsigprocmask(int how, const sigset_t *, sigset_t *old); +void xpthread_sigmask(int how, const sigset_t *, sigset_t *old); #endif /* signals.h */