Subversion Repositories HelenOS

Rev

Rev 1787 | Rev 2071 | Go to most recent revision | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 1787 Rev 1888
Line 40... Line 40...
40
 * Because of better operation ordering in fifo_pop(), the access
40
 * Because of better operation ordering in fifo_pop(), the access
41
 * policy for these two indices is to 'increment (mod size of FIFO)
41
 * policy for these two indices is to 'increment (mod size of FIFO)
42
 * and use'.
42
 * and use'.
43
 */
43
 */
44
 
44
 
45
#ifndef __FIFO_H__
45
#ifndef KERN_FIFO_H_
46
#define __FIFO_H__
46
#define KERN_FIFO_H_
47
 
47
 
48
#include <typedefs.h>
48
#include <typedefs.h>
49
#include <mm/slab.h>
49
#include <mm/slab.h>
50
 
50
 
51
/** Create and initialize static FIFO.
51
/** Create and initialize static FIFO.
Line 118... Line 118...
118
 
118
 
119
#endif
119
#endif
120
 
120
 
121
 /** @}
121
/** @}
122
 */
122
 */
123
 
-