博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
26、linux 几个C函数,nanosleep,lstat,unlink
阅读量:5149 次
发布时间:2019-06-13

本文共 363 字,大约阅读时间需要 1 分钟。

1、C语言的nanosleep1

pause execution for a specified time

int nanosleep(const struct timespec *req, struct timespec *rem);

2、lstat - get file status

int fstat(int filedes, struct stat *buf);

3、unlink2

delete a name and possibly the file it refers to

int unlink(const char *pathname);

参考

1

2

转载于:https://www.cnblogs.com/mydomain/archive/2011/09/28/2194540.html

你可能感兴趣的文章