Subversion Repositories HelenOS

Rev

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

Rev 4192 Rev 4243
Line 96... Line 96...
96
    packet_t free[ FREE_QUEUES_COUNT ];
96
    packet_t free[ FREE_QUEUES_COUNT ];
97
    /** Packet length upper bounds of the free packet queues.
97
    /** Packet length upper bounds of the free packet queues.
98
     *  The maximal lengths of packets in each queue in the ascending order.
98
     *  The maximal lengths of packets in each queue in the ascending order.
99
     *  The last queue is not limited.
99
     *  The last queue is not limited.
100
     */
100
     */
101
    int sizes[ FREE_QUEUES_COUNT ];
101
    size_t sizes[ FREE_QUEUES_COUNT ];
102
    /** Total packets allocated.
102
    /** Total packets allocated.
103
     */
103
     */
104
    unsigned int count;
104
    unsigned int count;
105
} ps_globals = {
105
} ps_globals = {
106
    { 1 },
106
    { 1 },