
APUE 集合
fulinux
我热爱Linux、热爱Yocto、喜欢编程、热爱科学技术的码农!希望我的博客能帮助到哪些在茫茫黑夜中摸索的小白!
欢迎关注、点赞和订阅!
展开
-
linux之dup和dup2函数解析
理论介绍:1. 文件描述符在内核中数据结构在具体说dup/dup2之前,我认为有必要先了解一下文件描述符在内核中的形态。一个进程在此存在期间,会有一些文件被打开,从而会返回一些文件描述符,从shell中运行一个进程,默认会有3个文件描述符存在(0、1、2), 0与进程的标准输入相关联,1与进程的标准输出相关联,2与进程的标准错误输出相关联,一个进程当前有哪些打开的文件描述符可以通过/p原创 2013-07-31 20:53:05 · 9426 阅读 · 1 评论 -
linux之chdir函数解析
[lingyun@localhost chdir]$ lschdir.c[lingyun@localhost chdir]$ cat chdir.c /********************************************************************************* * Copyright: (C) 2013 fulinu原创 2013-08-06 15:43:38 · 9165 阅读 · 0 评论 -
linux之getcwd函数解析
[lingyun@localhost getcwd]$ cat getcwd.c/********************************************************************************* * Copyright: (C) 2013 fulinux * All rights rese原创 2013-08-06 16:07:49 · 6000 阅读 · 0 评论 -
linux之utime函数解析
[lingyun@localhost utime]$ lshello utime.c world[lingyun@localhost utime]$ cat utime.c/********************************************************************************** Copyright: (原创 2013-08-04 18:16:13 · 3152 阅读 · 0 评论 -
linux之unlink函数解析
[lingyun@localhost unlink]$ cat unlink.c /********************************************************************************* * Copyright: (C) 2013 fulinux * All rights res原创 2013-08-04 11:17:10 · 2544 阅读 · 0 评论 -
linux之umask函数解析
[lingyun@localhost umask_1]$ vim umask.c + umask.c /******************************原创 2013-08-02 19:24:10 · 1680 阅读 · 0 评论 -
linux之access函数解析
[lingyun@localhost access_1]$ lsaccess.c[lingyun@localhost access_1]$ cat access.c /********************************************************************************* * Copyright: (C) 201原创 2013-08-02 16:15:54 · 1756 阅读 · 0 评论 -
linux之lstat函数解析
[lingyun@localhost lstat]$ cat lstat.c /********************************************************************************* * Copyright: (C) 2013 fulinux * All rights reser原创 2013-08-02 13:01:25 · 3869 阅读 · 0 评论 -
linux之stat函数解析
[lingyun@localhost stat_1]$ vim stat.c + stat.c /********************************原创 2013-08-02 12:19:06 · 2025 阅读 · 0 评论 -
linux之ioctl函数解析
[lingyun@localhost ioctl_1]$ lsipconfig.c[lingyun@localhost ioctl_1]$ cat ipconfig.c /********************************************************************************* * Copyright: (C) 2原创 2013-08-01 15:55:44 · 1757 阅读 · 0 评论 -
linux之read函数解析
一、[lingyun@localhost read_1]$ cat read.c /********************************************************************************* * Copyright: (C) 2013 fulinux * All rights r原创 2013-07-29 10:19:57 · 5278 阅读 · 0 评论 -
linux之creat函数解析
creat函数完全可以被open函数替代:open(pathname, O_WRONLY | O_CREAT | O_TRUNC, mode);[lingyun@localhost create]$ vim creat.c + creat.c原创 2013-07-28 13:17:14 · 5955 阅读 · 2 评论 -
linux之open函数解析
一、 open.c /*********************************************************************************原创 2013-07-28 13:01:26 · 2539 阅读 · 0 评论 -
pthread_mutex_init()实例
百度百科链接介绍pthread_mutex_init()函数[root@localhost cfile]# vim thread_mutex.c + thread_mutex.c原创 2013-12-05 15:06:05 · 4632 阅读 · 0 评论