typo fixes
[silc.git] / lib / silcutil / silcschedule.h
1 /*
2   
3   silcschedule.h
4  
5   COPYRIGHT
6  
7   Author: Pekka Riikonen <priikone@silcnet.org>
8  
9   Copyright (C) 1998 - 2001 Pekka Riikonen
10  
11   This program is free software; you can redistribute it and/or modify
12   it under the terms of the GNU General Public License as published by
13   the Free Software Foundation; either version 2 of the License, or
14   (at your option) any later version.
15  
16   This program is distributed in the hope that it will be useful,
17   but WITHOUT ANY WARRANTY; without even the implied warranty of
18   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
19   GNU General Public License for more details.
20
21 */
22  
23 /****h* silcutil/SILC Schedule Interface
24  *
25  * DESCRIPTION
26  *
27  * The SILC Scheduler is the heart of any application. The scheduler provides
28  * the application's main loop that can handle incoming data, outgoing data,
29  * timeouts and dispatch different kind of tasks.
30  *
31  * The SILC Scheduler supports file descriptor based tasks, timeout tasks
32  * and generic tasks. File descriptor tasks are tasks that perform some 
33  * operation over the specified file descriptor. These include network 
34  * connections, for example. The timeout tasks are timeouts that are executed
35  * after the specified timeout has elapsed. The generic tasks are tasks that
36  * apply to all registered file descriptors thus providing one task that
37  * applies to many independent connections.
38  *
39  * The SILC Scheduler is designed to be the sole main loop of the application
40  * so that the application does not need any other main loop.  However,
41  * SILC Scheduler does support running the scheduler only once, so that the
42  * scheduler does not block, and thus providing a possiblity that some
43  * external main loop is run over the SILC Scheduler. However, these 
44  * applications are considered to be special cases.
45  *
46  * Typical application first initializes the scheduler and then registers
47  * the very first tasks to the scheduler and then run the scheduler.  After
48  * the scheduler's run function returns the application is considered to be 
49  * ended.
50  *
51  * On WIN32 systems the SILC Scheduler is too designed to work as the main
52  * loop of the GUI application. It can handle all Windows messages and
53  * it dispatches them from the scheduler, and thus makes it possible to
54  * create GUI applications. The scheduler can also handle all kinds of
55  * WIN32 handles, this includes sockets created by the SILC Net API routines,
56  * WSAEVENT handle objects created by Winsock2 routines and arbitrary 
57  * WIN32 HANDLE objects.
58  *
59  * The SILC Scheduler supports multi-threads as well. The actual scheduler
60  * must be run in single-thread but other threads may register new tasks
61  * and unregister old tasks.  However, it is enforced that the actual
62  * task is always run in the main thread.  The scheduler is context based
63  * which makes it possible to allocate several schedulers for one application.
64  * Since the scheduler must be run in single-thread, a multi-threaded
65  * application could be created by allocating own scheduler for each of the
66  * worker threads.
67  *
68  ***/
69
70 #ifndef SILCSCHEDULE_H
71 #define SILCSCHEDULE_H
72
73 /****s* silcutil/SilcScheduleAPI/SilcSchedule
74  *
75  * NAME
76  * 
77  *    typedef struct SilcScheduleStruct *SilcSchedule;
78  *
79  * DESCRIPTION
80  *
81  *    This context is the actual Scheduler and is allocated by
82  *    the silc_schedule_init funtion.  The context is given as argument
83  *    to all silc_schedule_* functions.  It must be freed by the 
84  *    silc_schedule_uninit function.
85  *
86  ***/
87 typedef struct SilcScheduleStruct *SilcSchedule;
88
89 /****s* silcutil/SilcScheduleAPI/SilcTask
90  *
91  * NAME
92  * 
93  *    typedef struct SilcTaskStruct *SilcTask;
94  *
95  * DESCRIPTION
96  *
97  *    This object represents one task in the scheduler.  It is allocated
98  *    by the silc_schedule_task_add function and freed by one of the
99  *    silc_schedule_task_del* functions.
100  *
101  ***/
102 typedef struct SilcTaskStruct *SilcTask;
103
104 /****d* silcutil/SilcScheduleAPI/SilcTaskType
105  *
106  * NAME
107  * 
108  *    typedef enum { ... } SilcTaskType;
109  *
110  * DESCRIPTION
111  *
112  *    SILC has three types of tasks, non-timeout tasks (tasks that perform
113  *    over file descriptors), timeout tasks and generic tasks (tasks that
114  *    apply to every file descriptor). This type is sent as argument for the 
115  *    task registering function, silc_schedule_task_add.
116  *
117  * SOURCE
118  */
119 typedef enum {
120   /* File descriptor task that performs some event over file descriptors.
121      These tasks are for example network connections. */
122   SILC_TASK_FD,
123
124   /* Timeout tasks are tasks that are executed after the specified 
125      time has elapsed. After the task is executed the task is removed
126      automatically from the scheduler. It is safe to re-register the
127      task in task callback. It is also safe to unregister a task in
128      the task callback. */
129   SILC_TASK_TIMEOUT,
130
131   /* Generic tasks are non-timeout tasks and they apply to all file 
132      descriptors, except to those that have explicitly registered a 
133      non-timeout task. These tasks are there to make it simpler and faster 
134      to execute common code that applies to all connections. These are,
135      for example, receiving packets from network and sending packets to
136      network. It doesn't make much sense to register a task that receives
137      a packet from network to every connection when you can have one task
138      that applies to all connections. This is what generic tasks are for.
139      Generic tasks are not bound to any specific file descriptor, however,
140      the correct file descriptor must be passed as argument to task
141      registering function. */
142   SILC_TASK_GENERIC,
143 } SilcTaskType;
144 /***/
145
146 /****d* silcutil/SilcScheduleAPI/SilcTaskEvent
147  *
148  * NAME
149  * 
150  *    typedef enum { ... } SilcTaskEvent;
151  *
152  * DESCRIPTION
153  *
154  *    SILC Task event types.  The event type indicates the occurred
155  *    event of the task.  This type will be given as argument to the
156  *    SilcTaskCallback function to indicate the event for the caller.
157  *    The SILC_TASK_READ and SILC_TASK_WRITE may be set by the caller
158  *    of the silc_schedule_set_listen_fd, if the caller needs to control
159  *    the events for the task. The SILC_TASK_EXPIRE is set always only
160  *    by the scheduler when timeout expires for timeout task.  The
161  *    SILC_TASK_INTERRUPT is set for signal callback.
162  *
163  * SOURCE
164  */
165 typedef enum {
166   SILC_TASK_READ         = 0x0001,               /* Reading */
167   SILC_TASK_WRITE        = 0x0002,               /* Writing */
168   SILC_TASK_EXPIRE       = 0x0004,               /* Timeout */
169   SILC_TASK_INTERRUPT    = 0x0008,               /* Signal */
170 } SilcTaskEvent;
171 /***/
172
173 /****d* silcutil/SilcScheduleAPI/SilcTaskPriority
174  *
175  * NAME
176  * 
177  *    typedef enum { ... } SilcTaskPriority;
178  *
179  * DESCRIPTION
180  *
181  *    Task priorities. Tasks may be registered with different priorities.
182  *    This type defines the different task priorities. The priorities
183  *    behaves same for all type of tasks, fd tasks, timeout tasks and
184  *    generic tasks.
185  *
186  * SOURCE
187  */
188 typedef enum {
189   /* Lowest priority. The task is scheduled to run after its timeout
190      has expired only and only when every other task with higher priority 
191      has already been run. For non-timeout tasks this priority behaves
192      same way. Life is not fair for tasks with this priority. */
193   SILC_TASK_PRI_LOW,
194
195   /* Normal priority that is used mostly in SILC. This is priority that
196      should always be used unless you specificly need some other priority.
197      The scheduler will run this task as soon as its timeout has expired.
198      For non-timeout tasks this priority behaves same way. Tasks are run 
199      in FIFO (First-In-First-Out) order. */
200   SILC_TASK_PRI_NORMAL,
201 } SilcTaskPriority;
202 /***/
203
204 /****f* silcutil/SilcScheduleAPI/SilcTaskCallback
205  *
206  * SYNOPSIS
207  *
208  *    typedef void (*SilcTaskCallback)(SilcSchedule schedule, 
209  *                                     SilcTaskEvent type, SilcUInt32 fd, 
210  *                                     void *context);
211  *
212  * DESCRIPTION
213  *
214  *    The task callback function.  This function will be called by the
215  *    scheduler when some event of the task is performed.  For example,
216  *    when data is available from the connection this will be called.
217  *
218  *    The `schedule' is the scheduler context, the `type' is the indicated
219  *    event, the `fd' is the file descriptor of the task and the `context'
220  *    is a caller specified context. If multiple events occurred this
221  *    callback is called separately for all events.
222  *
223  *    To specify task callback function in the application using the
224  *    SILC_TASK_CALLBACK and SILC_TASK_CALLBACK_GLOBAL macros is
225  *    recommended.
226  *
227  ***/
228 typedef void (*SilcTaskCallback)(SilcSchedule schedule, SilcTaskEvent type,
229                                  SilcUInt32 fd, void *context);
230
231 /* Macros */
232
233 /****d* silcutil/SilcScheduleAPI/SILC_ALL_TASKS
234  *
235  * NAME
236  * 
237  *    #define SILC_ALL_TASKS ...
238  *
239  * DESCRIPTION
240  *
241  *    Marks for all tasks in the scheduler. This can be passed to 
242  *    silc_schedule_task_del function to delete all tasks at once.
243  *
244  * SOURCE
245  */
246 #define SILC_ALL_TASKS ((SilcTask)1)
247 /***/
248
249 /****d* silcutil/SilcScheduleAPI/SILC_TASK_CALLBACK
250  *
251  * NAME
252  * 
253  *    #define SILC_TASK_CALLBACK ...
254  *
255  * DESCRIPTION
256  *
257  *    Generic macro to define task callback functions. This defines a
258  *    static function with name `func' as a task callback function.
259  *
260  * SOURCE
261  */
262 #define SILC_TASK_CALLBACK(func)                                \
263 static void func(SilcSchedule schedule, SilcTaskEvent type,     \
264                  SilcUInt32 fd, void *context)
265 /***/
266
267 /****d* silcutil/SilcScheduleAPI/SILC_TASK_CALLBACK_GLOBAL
268  *
269  * NAME
270  * 
271  *    #define SILC_TASK_CALLBACK_GLOBAL ...
272  *
273  * DESCRIPTION
274  *
275  *    Generic macro to define task callback functions. This defines a
276  *    function with name `func' as a task callback function.  This
277  *    differs from SILC_TASK_CALLBACK in that the defined function is
278  *    not static.
279  *
280  * SOURCE
281  */
282 #define SILC_TASK_CALLBACK_GLOBAL(func)                 \
283 void func(SilcSchedule schedule, SilcTaskEvent type,    \
284           SilcUInt32 fd, void *context)
285 /***/
286
287 /* Prototypes */
288
289 /****f* silcutil/SilcScheduleAPI/silc_schedule_init
290  *
291  * SYNOPSIS
292  *
293  *    SilcSchedule silc_schedule_init(int max_tasks);
294  *
295  * DESCRIPTION
296  *
297  *    Initializes the scheduler. This returns the scheduler context that
298  *    is given as argument usually to all silc_schedule_* functions.
299  *    The `max_tasks' indicates the number of maximum tasks that the
300  *    scheduler can handle.
301  *
302  ***/
303 SilcSchedule silc_schedule_init(int max_tasks);
304
305 /****f* silcutil/SilcScheduleAPI/silc_schedule_uninit
306  *
307  * SYNOPSIS
308  *
309  *    bool silc_schedule_uninit(SilcSchedule schedule);
310  *
311  * DESCRIPTION
312  *
313  *    Uninitializes the scheduler. This is called when the program is ready
314  *    to end. This removes all tasks from the scheduler. Returns FALSE if the
315  *    scheduler could not be uninitialized. This happens when the scheduler
316  *    is still valid and silc_schedule_stop has not been called.
317  *
318  ***/
319 bool silc_schedule_uninit(SilcSchedule schedule);
320
321 /****f* silcutil/SilcScheduleAPI/silc_schedule_reinit
322  *
323  * SYNOPSIS
324  *
325  *    SilcSchedule silc_schedule_reinit(int max_tasks);
326  *
327  * DESCRIPTION
328  *
329  *    This function can be called to enlarge the task handling capabilities
330  *    of the scheduler indicated by `schedule'.  The `max_tasks' must be
331  *    larger than what was set in silc_schedule_init function.  This function
332  *    returns FALSE if it cannot reinit the scheduler.  This function does
333  *    not do anything else except ready the scheduler to handle `max_tasks'
334  *    number of tasks after this function returns.  It is safe to call this
335  *    function at any time, and it is guaranteed that existing tasks remain
336  *    as they are in the scheduler.
337  *
338  ***/
339 bool silc_schedule_reinit(SilcSchedule schedule, int max_tasks);
340
341 /****f* silcutil/SilcScheduleAPI/silc_schedule_stop
342  *
343  * SYNOPSIS
344  *
345  *    void silc_schedule_stop(SilcSchedule schedule);
346  *
347  * DESCRIPTION
348  *
349  *    Stops the scheduler even if it is not supposed to be stopped yet. 
350  *    After calling this, one must call silc_schedule_uninit (after the 
351  *    silc_schedule has returned).  After this is called it is guaranteed
352  *    that next time the scheduler enters the main loop it will be stopped.
353  *    However, untill it enters the main loop it will not detect that
354  *    it is stopped for example if this is called from another thread.
355  *
356  ***/
357 void silc_schedule_stop(SilcSchedule schedule);
358
359 /****f* silcutil/SilcScheduleAPI/silc_schedule
360  *
361  * SYNOPSIS
362  *
363  *    void silc_schedule(SilcSchedule schedule);
364  *
365  * DESCRIPTION
366  *
367  *    The SILC scheduler. This is actually the main routine in SILC programs.
368  *    When this returns the program is to be ended. Before this function can
369  *    be called, one must call silc_schedule_init function.
370  *
371  ***/
372 void silc_schedule(SilcSchedule schedule);
373
374 /****f* silcutil/SilcScheduleAPI/silc_schedule_one
375  *
376  * SYNOPSIS
377  *
378  *    bool silc_schedule_one(SilcSchedule schedule, int block);
379  *
380  * DESCRIPTION
381  *
382  *    Same as the silc_schedule but runs the scheduler only one round
383  *    and then returns.  This function is handy when the SILC scheduler
384  *    is used inside some other external scheduler, for example.  If
385  *    the `timeout_usecs' is non-negative a timeout will be added to the
386  *    scheduler.  The function will not return in this timeout unless
387  *    some other event occurs.
388  *
389  ***/
390 bool silc_schedule_one(SilcSchedule schedule, int timeout_usecs);
391
392 /****f* silcutil/SilcScheduleAPI/silc_schedule_wakeup
393  *
394  * SYNOPSIS
395  *
396  *    void silc_schedule_wakeup(SilcSchedule schedule);
397  *
398  * DESCRIPTION
399  *
400  *    Wakes up the scheduler. This is used only in multi-threaded
401  *    environments where threads may add new tasks or remove old tasks
402  *    from the scheduler. This is called to wake up the scheduler in the
403  *    main thread so that it detects the changes in the scheduler.
404  *    If threads support is not compiled in this function has no effect.
405  *    Implementation of this function may be platform specific.
406  *
407  ***/
408 void silc_schedule_wakeup(SilcSchedule schedule);
409
410 /****f* silcutil/SilcScheduleAPI/silc_schedule_task_add
411  *
412  * SYNOPSIS
413  *
414  *    SilcTask silc_schedule_task_add(SilcSchedule schedule, SilcUInt32 fd,
415  *                                    SilcTaskCallback callback, 
416  *                                    void *context, 
417  *                                    long seconds, long useconds, 
418  *                                    SilcTaskType type, 
419  *                                    SilcTaskPriority priority);
420  *
421  * DESCRIPTION
422  *
423  *    Registers a new task to the scheduler. This same function is used
424  *    to register all types of tasks. The `type' argument tells what type
425  *    of the task is. Note that when registering non-timeout tasks one
426  *    should also pass 0 as timeout, as the timeout will be ignored anyway. 
427  *    Also, note, that one cannot register timeout task with 0 timeout.
428  *    There cannot be zero timeouts, passing zero means no timeout is used
429  *    for the task and SILC_TASK_FD is used as default task type in
430  *    this case.
431  *
432  *    The `schedule' is the scheduler context. The `fd' is the file
433  *    descriptor of the task. On WIN32 systems the `fd' is not actual
434  *    file descriptor but some WIN32 event handle. On WIN32 system the `fd'
435  *    may be a socket created by the SILC Net API routines, WSAEVENT object
436  *    created by Winsock2 network routines or arbitrary WIN32 HANDLE object.
437  *    On Unix systems the `fd' is always the real file descriptor.
438  *
439  *    The `callback' is the task callback that will be called when some
440  *    event occurs for this task. The `context' is sent as argument to
441  *    the task `callback' function. For timeout tasks the callback is
442  *    called after the specified timeout has elapsed.
443  *
444  *    If the `type' is SILC_TASK_TIMEOUT then `seconds' and `useconds'
445  *    may be non-zero.  Otherwise they should be zero. The `priority'
446  *    indicates the priority of the task.
447  *
448  *    It is always safe to call this function in any place. New tasks
449  *    may be added also in task callbacks, and in multi-threaded environment
450  *    in other threads as well.
451  *   
452  ***/
453 SilcTask silc_schedule_task_add(SilcSchedule schedule, SilcUInt32 fd,
454                                 SilcTaskCallback callback, void *context, 
455                                 long seconds, long useconds, 
456                                 SilcTaskType type, 
457                                 SilcTaskPriority priority);
458
459 /****f* silcutil/SilcScheduleAPI/silc_schedule_task_del
460  *
461  * SYNOPSIS
462  *
463  *    void silc_schedule_task_del(SilcSchedule schedule, SilcTask task);
464  *
465  * DESCRIPTION
466  *
467  *    Deletes the `task' from the scheduler indicated by the `schedule'.
468  *    After deleting the task it is guaranteed that the task callback
469  *    will not be called. If the `task' is SILC_ALL_TASKS then all
470  *    tasks is removed from the scheduler.
471  *
472  *    It is safe to call this function in any place. Tasks may be removed
473  *    in task callbacks (including in the task's own task callback) and
474  *    in multi-threaded environment in other threads as well.
475  *
476  ***/
477 void silc_schedule_task_del(SilcSchedule schedule, SilcTask task);
478
479 /****f* silcutil/SilcScheduleAPI/silc_schedule_task_del_by_fd
480  *
481  * SYNOPSIS
482  *
483  *    void silc_schedule_task_del_by_fd(SilcSchedule schedule, SilcUInt32 fd);
484  *
485  * DESCRIPTION
486  *
487  *    Deletes a task from the scheduler by the specified `fd'.
488  *
489  *    It is safe to call this function in any place. Tasks may be removed
490  *    in task callbacks (including in the task's own task callback) and
491  *    in multi-threaded environment in other threads as well.
492  *
493  *    Note that generic tasks cannot be deleted using this function
494  *    since generic tasks does not match any specific fd.
495  *
496  ***/
497 void silc_schedule_task_del_by_fd(SilcSchedule schedule, SilcUInt32 fd);
498
499 /****f* silcutil/SilcScheduleAPI/silc_schedule_task_del_by_callback
500  *
501  * SYNOPSIS
502  *
503  *    void silc_schedule_task_del_by_callback(SilcSchedule schedule,
504  *                                            SilcTaskCallback callback);
505  *
506  * DESCRIPTION
507  *
508  *    Deletes a task from the scheduler by the specified `callback' task
509  *    callback function.
510  *
511  *    It is safe to call this function in any place. Tasks may be removed
512  *    in task callbacks (including in the task's own task callback) and
513  *    in multi-threaded environment in other threads as well.
514  *
515  ***/
516 void silc_schedule_task_del_by_callback(SilcSchedule schedule,
517                                         SilcTaskCallback callback);
518
519 /****f* silcutil/SilcScheduleAPI/silc_schedule_task_del_by_context
520  *
521  * SYNOPSIS
522  *
523  *    void silc_schedule_task_del_by_context(SilcSchedule schedule, 
524  *                                           void *context);
525  *
526  * DESCRIPTION
527  *
528  *    Deletes a task from the scheduler by the specified `context'.
529  *
530  *    It is safe to call this function in any place. Tasks may be removed
531  *    in task callbacks (including in the task's own task callback) and
532  *    in multi-threaded environment in other threads as well.
533  *
534  ***/
535 void silc_schedule_task_del_by_context(SilcSchedule schedule, void *context);
536
537 /****f* silcutil/SilcScheduleAPI/silc_schedule_set_listen_fd
538  *
539  * SYNOPSIS
540  *
541  *    void silc_schedule_set_listen_fd(SilcSchedule schedule, SilcUInt32 fd,
542  *                                     SilcTaskEvent mask);
543  *
544  * DESCRIPTION
545  *
546  *    Sets a file descriptor `fd' to be listened by the scheduler for
547  *    `mask' events.  To tell scheduler not to listen anymore for this
548  *    file descriptor call the silc_schedule_unset_listen_fd function.
549  *    When new task is created with silc_schedule_task_add the event
550  *    for the task's fd is initially set to SILC_TASK_READ. If you need
551  *    to control the task's fd's events you must call this function
552  *    whenever you need to change the events. This can be called multiple
553  *    times to change the events.
554  *
555  ***/
556 void silc_schedule_set_listen_fd(SilcSchedule schedule, SilcUInt32 fd,
557                                  SilcTaskEvent mask);
558
559 /****f* silcutil/SilcScheduleAPI/silc_schedule_unset_listen_fd
560  *
561  * SYNOPSIS
562  *
563  *    void silc_schedule_unset_listen_fd(SilcSchedule schedule, SilcUInt32 fd);
564  *
565  * DESCRIPTION
566  *
567  *    Tells the scheduler not to listen anymore for the specified
568  *    file descriptor `fd'. No events will be detected for the `fd'
569  *    after calling this function.
570  *
571  ***/
572 void silc_schedule_unset_listen_fd(SilcSchedule schedule, SilcUInt32 fd);
573
574 /****f* silcutil/SilcScheduleAPI/silc_schedule_signal_register
575  *
576  * SYNOPSIS
577  *
578  *    void silc_schedule_signal_register(SilcSchedule schedule, 
579  *                                       SilcUInt32 signal,
580  *                                       SilcTaskCallback callback,
581  *                                       void *context);
582  *
583  * DESCRIPTION
584  *
585  *    Register signal indicated by `signal' to the scheduler.  Application
586  *    should register all signals it is going to use to the scheduler.
587  *    The `callback' with `context' will be called after the application
588  *    has called silc_schedule_signal_call function in the real signal 
589  *    callback.  Application is responsible of calling that, and the 
590  *    signal system will not work without calling silc_schedule_signal_call
591  *    function.  The specified `signal' value will be also delivered to
592  *    the `callback' as the fd-argument.  The event type in the callback
593  *    will be SILC_TASK_INTERRUPT.  It is safe to use any SILC routines
594  *    in the `callback' since it is actually called after the signal really
595  *    happened.
596  *
597  *    On platform that does not support signals calling this function has 
598  *    no effect.
599  *
600  * EXAMPLE
601  *
602  *    Typical signal usage case on Unix systems:
603  *
604  *    struct sigaction sa;
605  *    sa.sa_handler = signal_handler;
606  *    sigaction(SIGHUP, &sa, NULL);
607  *    sigaction(SIGINT, &sa, NULL);
608  *    silc_schedule_signal_register(schedule, SIGHUP, hup_signal, context);
609  *    silc_schedule_signal_register(schedule, SIGINT, int_signal, context);
610  *
611  *    static void signal_handler(int sig)
612  *    {
613  *      silc_schedule_signal_call(schedule, sig);
614  *    }
615  *
616  *    The `signal_handler' can be used as generic signal callback in the
617  *    application that merely calls silc_schedule_signal_call, which then
618  *    eventually will deliver for example the `hup_signal' callback.  The 
619  *    same `signal_handler' can be used with all signals.
620  *
621  ***/
622 void silc_schedule_signal_register(SilcSchedule schedule, SilcUInt32 signal,
623                                    SilcTaskCallback callback, void *context);
624
625 /****f* silcutil/SilcScheduleAPI/silc_schedule_signal_unregister
626  *
627  * SYNOPSIS
628  *
629  *    void silc_schedule_signal_unregister(SilcSchedule schedule, 
630  *                                         SilcUInt32 signal,
631  *                                         SilcTaskCallback callback,
632  *                                         void *context);
633  *
634  * DESCRIPTION
635  *
636  *    Unregister a signal indicated by `signal' from the scheduler.  On
637  *    platform that does not support signals calling this function has no
638  *    effect.
639  *
640  ***/
641 void silc_schedule_signal_unregister(SilcSchedule schedule, SilcUInt32 signal,
642                                      SilcTaskCallback callback, void *context);
643
644 /****f* silcutil/SilcScheduleAPI/silc_schedule_signal_call
645  *
646  * SYNOPSIS
647  *
648  *    void silc_schedule_signal_call(SilcSchedule schedule, 
649  *                                   SilcUInt32 signal);
650  *
651  * DESCRIPTION
652  *
653  *    Mark the `signal' to be called later.  Every signal that has been
654  *    registered by silc_schedule_signal_register is delivered by calling
655  *    this function.  When signal really occurs, the application is 
656  *    responsible of calling this function in the signal handler.  After
657  *    signal is over the scheduler will then safely deliver the callback
658  *    that was given to silc_schedule_signal_register function.
659  *
660  ***/
661 void silc_schedule_signal_call(SilcSchedule schedule, SilcUInt32 signal);
662
663 #endif