nckernel  0.1
 All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
Macros
stddef.h File Reference
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Macros

#define __NORET   __attribute__((noreturn))
 종료(리턴)되지 않는 함수에 사용 More...
 
#define __PACKED   __attribute__((packed))
 
#define __UNUSED   __attribute__((unused))
 사용되지 않는 변수 또는 함수 선언시 사용 More...
 
#define container_of(ptr, type, member)
 cast a member of a structure out to the containing structure More...
 
#define NULL   (void*)0
 
#define offsetof(TYPE, MEMBER)   ((size_t) &((TYPE *)0)->MEMBER)
 특정 구조체에서 특정 멤버 변수의 위치를 얻는다 More...
 
#define prefetch(a)   (void)(a)
 CPU 캐시를 활용하여 데이터를 미리 읽어 둔다. More...
 
#define restrict   /* restrict */