Subversion Repositories HelenOS

Rev

Rev 3990 | Rev 4192 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 3990 Rev 4075
Line 248... Line 248...
248
        if( packet_release ) packet_release( actual );
248
        if( packet_release ) packet_release( actual );
249
        actual = next;
249
        actual = next;
250
    }
250
    }
251
}
251
}
252
 
252
 
-
 
253
packet_t pq_next( packet_t packet ){
-
 
254
    if( ! packet_is_valid( packet )) return NULL;
-
 
255
    return pm_find( packet->next );
-
 
256
}
-
 
257
 
-
 
258
packet_t pq_previous( packet_t packet ){
-
 
259
    if( ! packet_is_valid( packet )) return NULL;
-
 
260
    return pm_find( packet->previous );
-
 
261
}
-
 
262
 
253
/** @}
263
/** @}
254
 */
264
 */