util/list: don't use GLib
This commit is contained in:
parent
6cafec8ae6
commit
0308ec564e
@ -23,6 +23,8 @@
|
|||||||
#include "util/list.h"
|
#include "util/list.h"
|
||||||
#include "gcc.h"
|
#include "gcc.h"
|
||||||
|
|
||||||
|
#include <glib.h>
|
||||||
|
|
||||||
#include <assert.h>
|
#include <assert.h>
|
||||||
#include <stddef.h>
|
#include <stddef.h>
|
||||||
#include <stdbool.h>
|
#include <stdbool.h>
|
||||||
|
@ -25,8 +25,6 @@
|
|||||||
#ifndef _LINUX_LIST_H
|
#ifndef _LINUX_LIST_H
|
||||||
#define _LINUX_LIST_H
|
#define _LINUX_LIST_H
|
||||||
|
|
||||||
#include <glib.h>
|
|
||||||
|
|
||||||
#ifdef __clang__
|
#ifdef __clang__
|
||||||
/* allow typeof() */
|
/* allow typeof() */
|
||||||
#pragma GCC diagnostic ignored "-Wlanguage-extension-token"
|
#pragma GCC diagnostic ignored "-Wlanguage-extension-token"
|
||||||
@ -40,7 +38,7 @@
|
|||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
#define container_of(ptr, type, member) \
|
#define container_of(ptr, type, member) \
|
||||||
(&G_STRUCT_MEMBER(type, ptr, -G_STRUCT_OFFSET(type, member)))
|
((type *)((uint8_t *)ptr - offsetof(type, member)))
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* These are non-NULL pointers that will result in page faults
|
* These are non-NULL pointers that will result in page faults
|
||||||
|
Loading…
Reference in New Issue
Block a user