?? rtl_stdlib.h
字號:
/* * RTLinux stdlib.h support * * Written by Michael Barabanov * Copyright (C) Finite State Machine Labs Inc., 2000 * Released under the terms of the GPL Version 2 * */#ifndef __RTL_STDLIB_H__#define __RTL_STDLIB_H__#ifdef __KERNEL__#include <pthread.h>extern "C" { void *kmalloc(unsigned size, int prio); void kfree(const void *p);};static inline void *malloc(size_t size){ void *ret; if (pthread_self() != pthread_linux() || !(ret = kmalloc(size, GFP_KERNEL))) { errno = ENOMEM; return 0; } return ret;}static inline void free(void *ptr){ if (pthread_self() != pthread_linux()) { return; } kfree(ptr);}#endif /* __KERNEL__ */#endif
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -