From: Pekka Riikonen Date: Wed, 20 Mar 2002 12:04:55 +0000 (+0000) Subject: updates X-Git-Tag: silc.client.0.8.2~2 X-Git-Url: http://git.silcnet.org/gitweb/?p=silc.git;a=commitdiff_plain;h=f7b64d3b4027c6ba2b90e1026f475d8751fa6012 updates --- diff --git a/lib/silcutil/silcschedule.h b/lib/silcutil/silcschedule.h index 953dbe73..4e079cad 100644 --- a/lib/silcutil/silcschedule.h +++ b/lib/silcutil/silcschedule.h @@ -157,15 +157,16 @@ typedef enum { * The SILC_TASK_READ and SILC_TASK_WRITE may be set by the caller * of the silc_schedule_set_listen_fd, if the caller needs to control * the events for the task. The SILC_TASK_EXPIRE is set always only - * by the scheduler when timeout expires for timeout task. + * by the scheduler when timeout expires for timeout task. The + * SILC_TASK_INTERRUPT is set for signal callback. * * SOURCE */ typedef enum { - SILC_TASK_READ = 0x0001, /* Reading */ - SILC_TASK_WRITE = 0x0002, /* Writing */ - SILC_TASK_EXPIRE = 0x0004, /* Timeout */ - SILC_TASK_INTERRUPT = 0x0004, /* Signal */ + SILC_TASK_READ = 0x0001, /* Reading */ + SILC_TASK_WRITE = 0x0002, /* Writing */ + SILC_TASK_EXPIRE = 0x0004, /* Timeout */ + SILC_TASK_INTERRUPT = 0x0008, /* Signal */ } SilcTaskEvent; /***/