static int epollfd = -1;
static job_array jobs;
-static pthread_mutex_t mx;
+static pthread_mutex_t el_mx;
+static pthread_cond_t el_cond;
static pthread_t el_thread;
static int el_job_setemode(job_t *w, el_mode emode)
int el_job_release(job_t *w, el_status reason)
{
+ if (w->cond) {
+ pthread_cond_signal(&el_cond);
+ w->cond = false;
+ }
w->state = EL_LLP_FINI;
if (w->m && w->m->finalize) {
w->m->finalize(w, reason);
void el_lock(void)
{
- pthread_mutex_lock(&mx);
+ pthread_mutex_lock(&el_mx);
}
void el_unlock(void)
{
- pthread_mutex_unlock(&mx);
+ pthread_mutex_unlock(&el_mx);
}
int el_dispatch(int timeout)
int event = events[count].events;
int evt = 0;
+ if (w->cond) {
+ pthread_cond_signal(&el_cond);
+ w->cond = false;
+ }
gettimeofday(&w->mru, NULL);
switch (w->state) {
case EL_LLP_INIT:
return 0;
}
+void el_wait(job_t *w)
+{
+ w->cond = true;
+ pthread_cond_wait(&el_cond, &el_mx);
+}
+
static void *el_loop(void *data)
{
time_t sec = time(NULL);
for (int i = jobs.len - 1; i >= 0; --i) {
job_t *w = jobs.arr[i];
if (timercmp(&now, &w->mru, >)) {
+ if (w->cond) {
+ pthread_cond_signal(&el_cond);
+ w->cond = false;
+ }
IGNORE(w->m->on_event(w, EL_EVT_WAKEUP));
}
}
pthread_mutexattr_init(&attr);
pthread_mutexattr_settype(&attr, PTHREAD_MUTEX_RECURSIVE_NP);
- pthread_mutex_init(&mx, &attr);
+ pthread_mutex_init(&el_mx, &attr);
pthread_mutexattr_destroy(&attr);
gnutls_global_init();
job_array_wipe(&jobs);
close(epollfd);
gnutls_global_deinit();
- pthread_mutex_destroy(&mx);
+ pthread_mutex_destroy(&el_mx);
}
int fd;
int ssf;
- gnutls_session_t session;
- gnutls_certificate_credentials_t xcred;
-
+ unsigned cond : 1;
el_state state : 2;
el_mode mode : 3;
el_mode emode : 3;
+ gnutls_session_t session;
+ gnutls_certificate_credentials_t xcred;
+
struct timeval mru;
int (*llp)(struct job_t *);
const struct machine_t *m;
void el_lock(void);
void el_unlock(void);
+void el_wait(job_t *w);
int el_dispatch(int timeout);