- 论坛徽章:
- 0
|
在kernel module中我可以调用 time 函数吗?
我想说的是如果我在编写 --内核模块--时,在代码中是否可以直接调用
#include <time.h>;
#include <sys/time.h>;
...other codes go here...
time_t att;
struct tm *atm;
att = time(NULL);
atm = localtime(&att);
some codes using atm->;tm_hours atm->;tm_min atm->;tm_sec go here
my_put_string(y, x, ctime(&att));
...other codes go here...
我之所以问这个问题,是因为对内核编程不了解,只知道在内核编程中可用的函数很少,按王波的书上所说,只有libc中的可用,但我不是我是否可用 上面的函数(time(), localtime(), ctime() ???),以及我怎样包含头文件(是只#include <time.h>; 还是只#include <sys/time.h>;;如果都要include,他们的顺序是怎样的?)
谢谢! |
|