Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/srv/ns/service.c

    rb72efe8 r007e6efa  
    3535#include <assert.h>
    3636#include <errno.h>
    37 #include <stdio.h>
    38 #include <malloc.h>
    3937#include "service.h"
    4038#include "ns.h"
     
    123121} pending_conn_t;
    124122
    125 static list_t pending_conn;
     123static link_t pending_conn;
    126124
    127125int service_init(void)
     
    141139void process_pending_conn(void)
    142140{
     141        link_t *cur;
     142       
    143143loop:
    144         list_foreach(pending_conn, cur) {
     144        for (cur = pending_conn.next; cur != &pending_conn; cur = cur->next) {
    145145                pending_conn_t *pr = list_get_instance(cur, pending_conn_t, link);
    146146               
Note: See TracChangeset for help on using the changeset viewer.