From: Sungbae Yoo Date: Wed, 27 May 2015 05:51:55 +0000 (+0900) Subject: config: miscellaneous signals for lxc.*signal X-Git-Tag: lxc-2.0.0.beta1~229^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=89dfc3023083e36711d4d699e37cbaf54cc83497;p=thirdparty%2Flxc.git config: miscellaneous signals for lxc.*signal Signed-off-by: Sungbae Yoo --- diff --git a/src/lxc/confile.c b/src/lxc/confile.c index af5c2712e..b045689d5 100644 --- a/src/lxc/confile.c +++ b/src/lxc/confile.c @@ -195,6 +195,63 @@ static const struct signame signames[] = { { SIGTSTP, "TSTP" }, { SIGTTIN, "TTIN" }, { SIGTTOU, "TTOU" }, +#ifdef SIGTRAP + { SIGTRAP, "TRAP" }, +#endif +#ifdef SIGIOT + { SIGIOT, "IOT" }, +#endif +#ifdef SIGEMT + { SIGEMT, "EMT" }, +#endif +#ifdef SIGBUS + { SIGBUS, "BUS" }, +#endif +#ifdef SIGSTKFLT + { SIGSTKFLT, "STKFLT" }, +#endif +#ifdef SIGCLD + { SIGCLD, "CLD" }, +#endif +#ifdef SIGURG + { SIGURG, "URG" }, +#endif +#ifdef SIGXCPU + { SIGXCPU, "XCPU" }, +#endif +#ifdef SIGXFSZ + { SIGXFSZ, "XFSZ" }, +#endif +#ifdef SIGVTALRM + { SIGVTALRM, "VTALRM" }, +#endif +#ifdef SIGPROF + { SIGPROF, "PROF" }, +#endif +#ifdef SIGWINCH + { SIGWINCH, "WINCH" }, +#endif +#ifdef SIGIO + { SIGIO, "IO" }, +#endif +#ifdef SIGPOLL + { SIGPOLL, "POLL" }, +#endif +#ifdef SIGINFO + { SIGINFO, "INFO" }, +#endif +#ifdef SIGLOST + { SIGLOST, "LOST" }, +#endif +#ifdef SIGPWR + { SIGPWR, "PWR" }, +#endif +#ifdef SIGUNUSED + { SIGUNUSED, "UNUSED" }, +#endif +#ifdef SIGSYS + { SIGSYS, "SYS" }, +#endif }; static const size_t config_size = sizeof(config)/sizeof(struct lxc_config_t);