Rev 4555 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
Rev 4555 | Rev 4566 | ||
---|---|---|---|
Line 47... | Line 47... | ||
47 | #include <vfs/canonify.h> |
47 | #include <vfs/canonify.h> |
48 | 48 | ||
49 | #define min(a, b) ((a) < (b) ? (a) : (b)) |
49 | #define min(a, b) ((a) < (b) ? (a) : (b)) |
50 | 50 | ||
51 | FIBRIL_MUTEX_INITIALIZE(plb_mutex); |
51 | FIBRIL_MUTEX_INITIALIZE(plb_mutex); |
52 | link_t plb_head; /**< PLB entry ring buffer. */ |
52 | LIST_INITIALIZE(plb_head); /**< PLB entry ring buffer. */ |
53 | uint8_t *plb = NULL; |
53 | uint8_t *plb = NULL; |
54 | 54 | ||
55 | /** Perform a path lookup. |
55 | /** Perform a path lookup. |
56 | * |
56 | * |
57 | * @param path Path to be resolved; it must be a NULL-terminated |
57 | * @param path Path to be resolved; it must be a NULL-terminated |