rtscf             147 event/modules/ngx_rtsig_module.c     ngx_rtsig_conf_t  *rtscf;
rtscf             149 event/modules/ngx_rtsig_module.c     rtscf = ngx_event_get_conf(cycle->conf_ctx, ngx_rtsig_module);
rtscf             152 event/modules/ngx_rtsig_module.c     sigaddset(&set, (int) rtscf->signo);
rtscf             153 event/modules/ngx_rtsig_module.c     sigaddset(&set, (int) rtscf->signo + 1);
rtscf             167 event/modules/ngx_rtsig_module.c     overflow_list = ngx_alloc(sizeof(struct pollfd) * rtscf->overflow_events,
rtscf             198 event/modules/ngx_rtsig_module.c     ngx_rtsig_conf_t  *rtscf;
rtscf             215 event/modules/ngx_rtsig_module.c     rtscf = ngx_event_get_conf(ngx_cycle->conf_ctx, ngx_rtsig_module);
rtscf             217 event/modules/ngx_rtsig_module.c     signo = rtscf->signo + c->read->instance;
rtscf             301 event/modules/ngx_rtsig_module.c     ngx_rtsig_conf_t   *rtscf;
rtscf             355 event/modules/ngx_rtsig_module.c     rtscf = ngx_event_get_conf(ngx_cycle->conf_ctx, ngx_rtsig_module);
rtscf             357 event/modules/ngx_rtsig_module.c     if (signo == (int) rtscf->signo || signo == (int) rtscf->signo + 1) {
rtscf             372 event/modules/ngx_rtsig_module.c         instance = signo - (int) rtscf->signo;
rtscf             437 event/modules/ngx_rtsig_module.c         if (sigaction(rtscf->signo, &sa, NULL) == -1) {
rtscf             439 event/modules/ngx_rtsig_module.c                           "sigaction(%d, SIG_DFL) failed", rtscf->signo);
rtscf             442 event/modules/ngx_rtsig_module.c         if (sigaction(rtscf->signo + 1, &sa, NULL) == -1) {
rtscf             444 event/modules/ngx_rtsig_module.c                           "sigaction(%d, SIG_DFL) failed", rtscf->signo + 1);
rtscf             472 event/modules/ngx_rtsig_module.c     ngx_rtsig_conf_t  *rtscf;
rtscf             477 event/modules/ngx_rtsig_module.c     rtscf = ngx_event_get_conf(ngx_cycle->conf_ctx, ngx_rtsig_module);
rtscf             484 event/modules/ngx_rtsig_module.c         while (n < rtscf->overflow_events) {
rtscf             609 event/modules/ngx_rtsig_module.c         if (tested >= rtscf->overflow_test) {
rtscf             647 event/modules/ngx_rtsig_module.c                 if (rtsig_max / (int) rtscf->overflow_threshold < rtsig_nr) {
rtscf             690 event/modules/ngx_rtsig_module.c     ngx_rtsig_conf_t  *rtscf;
rtscf             692 event/modules/ngx_rtsig_module.c     rtscf = ngx_palloc(cycle->pool, sizeof(ngx_rtsig_conf_t));
rtscf             693 event/modules/ngx_rtsig_module.c     if (rtscf == NULL) {
rtscf             697 event/modules/ngx_rtsig_module.c     rtscf->signo = NGX_CONF_UNSET;
rtscf             698 event/modules/ngx_rtsig_module.c     rtscf->overflow_events = NGX_CONF_UNSET;
rtscf             699 event/modules/ngx_rtsig_module.c     rtscf->overflow_test = NGX_CONF_UNSET;
rtscf             700 event/modules/ngx_rtsig_module.c     rtscf->overflow_threshold = NGX_CONF_UNSET;
rtscf             702 event/modules/ngx_rtsig_module.c     return rtscf;
rtscf             709 event/modules/ngx_rtsig_module.c     ngx_rtsig_conf_t  *rtscf = conf;
rtscf             712 event/modules/ngx_rtsig_module.c     ngx_conf_init_uint_value(rtscf->signo, SIGRTMIN + 10);
rtscf             714 event/modules/ngx_rtsig_module.c     ngx_conf_init_uint_value(rtscf->overflow_events, 16);
rtscf             715 event/modules/ngx_rtsig_module.c     ngx_conf_init_uint_value(rtscf->overflow_test, 32);
rtscf             716 event/modules/ngx_rtsig_module.c     ngx_conf_init_uint_value(rtscf->overflow_threshold, 10);