摘要: file/hole.c #include "apue.h"#include char buf1[] = "abcdefghij";char buf2[] = "ABCDEFGHIJ";intmain(void){ int fd; if ((fd = creat("file.hole", FILE_MODE)) < 0) err_sys("creat error"); if (write(fd... 阅读全文
posted @ 2014-07-16 23:11 paullam 阅读(202) 评论(0) 推荐(0) 编辑
摘要: file/seek.c#include "apue.h"intmain(void){ if (lseek(STDIN_FILENO, 0, SEEK_CUR) == -1) printf("cannot seek\n"); else printf("seek OK\n"); exit(0);} 阅读全文
posted @ 2014-07-16 23:03 paullam 阅读(219) 评论(0) 推荐(0) 编辑
摘要: lib/openmax.c#include "apue.h"#include #include #ifdef OPEN_MAXstatic long openmax = OPEN_MAX;#elsestatic long openmax = 0;#endif/* * If OPEN_MAX is i... 阅读全文
posted @ 2014-07-16 23:01 paullam 阅读(238) 评论(0) 推荐(0) 编辑
摘要: lib/pathalloc.c#include "apue.h"#include #include #ifdef PATH_MAXstatic int pathmax = PATH_MAX;#elsestatic int pathmax = 0;#endif#define SUSV3 200112L... 阅读全文
posted @ 2014-07-16 22:58 paullam 阅读(205) 评论(0) 推荐(0) 编辑
摘要: (1) sysconf() 返回选项 (变量) 的当前值,这个值可配置的但也是受系统限制的。在成功完成的情况下,sysconf() 返回变量的当前值。该值受到的限制将少于编译时 , 或 中可用的对应值。大多数这些变量的值在调用进程的生存时间内不变。如果出错,那么函数返回 -1 ,并适当地设置 e... 阅读全文
posted @ 2014-07-16 22:57 paullam 阅读(466) 评论(0) 推荐(0) 编辑
摘要: 在类库项目里引用了WebService,然后在Web层调用类库,接着就报以上截图的错误了!解决方法:将类库的App.Config中的引用信息拷贝到Web层的Web.Config中。 阅读全文
posted @ 2014-07-15 22:18 paullam 阅读(846) 评论(0) 推荐(0) 编辑
摘要: int execlp(const char *file, const char *arg, ...);函数说明:execlp()会从PATH环境变量所指的目录中查找符合参数file的文件名,找到后便执行该文件,然后将第二个以后的参数当做该文件的argv[0]、argv[1]……,最后一个参数必须用空... 阅读全文
posted @ 2014-07-15 09:22 paullam 阅读(198) 评论(0) 推荐(0) 编辑
摘要: file/uidgid.c1 #include "apue.h"2 int3 main(void)4 {5 printf("uid = %d, gid = %d\n", getuid(), getgid());6 exit(0);7 } 阅读全文
posted @ 2014-07-15 09:20 paullam 阅读(174) 评论(0) 推荐(0) 编辑
摘要: file/testerror.c 1 #include "apue.h" 2 #include 3 int 4 main(int argc, char *argv[]) 5 { 6 fprintf(stderr, "EACCES: %s\n", strerror(EACCES)); 7 ... 阅读全文
posted @ 2014-07-15 09:19 paullam 阅读(160) 评论(0) 推荐(0) 编辑
摘要: proc/shell1.c 1 #include "apue.h" 2 #include 3 int 4 main(void) 5 { 6 char buf[MAXLINE]; /* from apue.h */ 7 pid_t pid; 8 int ... 阅读全文
posted @ 2014-07-15 09:17 paullam 阅读(147) 评论(0) 推荐(0) 编辑