Fixed attributes in mem.c.

This commit is contained in:
OBattler
2023-06-11 13:44:12 +02:00
parent 827500f861
commit aac5053512

View File

@@ -228,8 +228,8 @@ typedef struct page_t {
} page_t;
extern uint32_t purgable_page_list_head;
static inline int
page_in_evict_list(page_t *p) __attribute__((always_inline))
__attribute__((always_inline)) static inline int
page_in_evict_list(page_t *p)
{
return (p->evict_prev != EVICT_NOT_IN_LIST);
}