@@ -204,7 +204,7 @@ static ticks_t timer_handler(ticks_t ticks, struct timer_ln* tl, void* data) {
/* begin critical section */
if (a->disable_itself) {
- timer_allow_del(a->link);
+ timer_allow_del();
timer_del(a->link);
timer_reinit(a->link);
a->disable_itself = 0;
@@ -62,7 +62,7 @@ extern int process_no;
extern struct tcp_child* tcp_children;
-int init_pt();
+int init_pt(int proc_no);
int get_max_procs();
int register_procs(int no);
int get_max_open_fds();
@@ -815,7 +815,7 @@ return ret;
* context), all other calls will have no effect and will log a
* bug message
*/
-void timer_allow_del()
+void timer_allow_del(void)
{
if (IS_IN_TIMER() ){
UNSET_RUNNING();
@@ -186,7 +186,7 @@ int timer_del_safe(struct timer_ln *tl);
#define timer_del timer_del_safe
#endif
-void timer_allow_del();
+void timer_allow_del(void);
/* old timer compatibility functions & structure */