当前位置: 技术问答>linux和unix
关于:UNIX网络编程第二卷 进程间通信问题!
来源: 互联网 发布时间:2016-05-01
本文导语: 我最近刚开始看这本书,调试书上第一个例子时,有如下错误,源代码: #include #include #include //#include #include int main(int argc,char** argv) { struct stat stat; if(argc != 2) printf("usage:ftok"); stat(argv[1],&stat); printf...
我最近刚开始看这本书,调试书上第一个例子时,有如下错误,源代码:
#include
#include
#include
//#include
#include
int
main(int argc,char** argv)
{
struct stat stat;
if(argc != 2)
printf("usage:ftok");
stat(argv[1],&stat);
printf("st_dev:%lx,st_ino:%lx,key:%xn",
(u_long)stat.st_dev,(u_long)stat.st_ino,
ftok(argv[1],0x57));
exit(0);
}
执行后,如下错误:3.2.c: 在函数‘main’中:
3.2.c:10: 错误: ‘stat’的存储大小未知
很奇怪阿!请高手指教!!!
还有就是请教看过这本书的朋友,书上作者定义的unpipc.h头文件,我在网上找到后方到/usr/include目录下 编译的话会报这个头文件有错误!!! 哪位朋友有源代码的话能给我发一份吗?感谢了阿!邮箱是:lvrainbow19871@gmail.com
#include
#include
#include
//#include
#include
int
main(int argc,char** argv)
{
struct stat stat;
if(argc != 2)
printf("usage:ftok");
stat(argv[1],&stat);
printf("st_dev:%lx,st_ino:%lx,key:%xn",
(u_long)stat.st_dev,(u_long)stat.st_ino,
ftok(argv[1],0x57));
exit(0);
}
执行后,如下错误:3.2.c: 在函数‘main’中:
3.2.c:10: 错误: ‘stat’的存储大小未知
很奇怪阿!请高手指教!!!
还有就是请教看过这本书的朋友,书上作者定义的unpipc.h头文件,我在网上找到后方到/usr/include目录下 编译的话会报这个头文件有错误!!! 哪位朋友有源代码的话能给我发一份吗?感谢了阿!邮箱是:lvrainbow19871@gmail.com
|
#include
#include
#include
#include
#include
#include
#include
int
main(int argc, char **argv)
{
struct stat stbuf;
if (argc != 2) {
printf("usage:ftok ");
exit(1);
}
if (stat(argv[1], &stbuf) == -1) {
perror("stat error");
exit(1);
}
printf("st_dev:%lx,st_ino:%lx,key:%xn", (u_long)stbuf.st_dev, (u_long)stbuf.st_ino, ftok(argv[1], 0x57));
exit(0);
}
如果是想下载W.Richard Stevens他的源代码到他的个人网站去下载.
http://www.kohala.com/start/
http://www.kohala.com/start/unpv22e/unpv22e.html
至于unpipc.h,我想这也是作者图方便吧,把所有的头文件和定义,函数声明放一块.有不
同意见请砸砖.我和你一样,自己仿照它,改写它.
|
struct stat stat;
这里你不要声明stat的变量啊
源代码下载:
http://download.csdn.net/source/857949
源代码使用说明,仅供参考:
首先需要make一次源代码
编辑源码解压生成的apue.2e文件夹下的Make.defines.linux
修改WKDIR=/home/var/apue.2e为你的apue.2e目录,比如我的apue源码解压在/usr/local,那我就改为:
WKDIR=/usr/local/apue.2e
然后进入apue.2e/std 目录,编辑linux.mk。修改里面所有的nawk为awk。
最后返回apue.2e目录,执行make命令。
以下是编译源码时的错误提示跟解决方法(假定你的工作目录跟我的一样,为/usr/local/apue.2e)
错误提示1:
myls.c:1:19: apue.h: No such file or directory
myls.c: In function `main':
myls.c:13: error: `NULL' undeclared (first use in this function)
myls.c:13: error: (Each undeclared identifier is reported only once
myls.c:13: error: for each function it appears in.)
解决办法:
拷贝apue.h到系统默认头文件目录中
$cp /usr/local/apue.2e/include/apue.h /usr/include
错误提示2:
/tmp/ccBBopm0.o(.text+0x2b): In function `main':
: undefined reference to `err_quit'
/tmp/ccBBopm0.o(.text+0x5f): In function `main':
: undefined reference to `err_sys'
collect2: ld returned 1 exit status
解决办法:
err_quit跟err_sys是作者自己定义的错误处理函数,需要单独定义头文件
在/usr/include 下新建一个名为myerr.h的文件
拷贝下边的内容到myerr.h(其实此头文件在原书的附录B中)
然后在你需要使用这几种错误处理函数的程序源代码里加入
#include
就好了。
这里你不要声明stat的变量啊
源代码下载:
http://download.csdn.net/source/857949
源代码使用说明,仅供参考:
首先需要make一次源代码
编辑源码解压生成的apue.2e文件夹下的Make.defines.linux
修改WKDIR=/home/var/apue.2e为你的apue.2e目录,比如我的apue源码解压在/usr/local,那我就改为:
WKDIR=/usr/local/apue.2e
然后进入apue.2e/std 目录,编辑linux.mk。修改里面所有的nawk为awk。
最后返回apue.2e目录,执行make命令。
以下是编译源码时的错误提示跟解决方法(假定你的工作目录跟我的一样,为/usr/local/apue.2e)
错误提示1:
myls.c:1:19: apue.h: No such file or directory
myls.c: In function `main':
myls.c:13: error: `NULL' undeclared (first use in this function)
myls.c:13: error: (Each undeclared identifier is reported only once
myls.c:13: error: for each function it appears in.)
解决办法:
拷贝apue.h到系统默认头文件目录中
$cp /usr/local/apue.2e/include/apue.h /usr/include
错误提示2:
/tmp/ccBBopm0.o(.text+0x2b): In function `main':
: undefined reference to `err_quit'
/tmp/ccBBopm0.o(.text+0x5f): In function `main':
: undefined reference to `err_sys'
collect2: ld returned 1 exit status
解决办法:
err_quit跟err_sys是作者自己定义的错误处理函数,需要单独定义头文件
在/usr/include 下新建一个名为myerr.h的文件
拷贝下边的内容到myerr.h(其实此头文件在原书的附录B中)
#include "apue.h"
#include /* for definition of errno */
#include /* ISO C variable aruments */
static void err_doit(int, int, const char *, va_list);
/*
* Nonfatal error related to a system call.
* Print a message and return.
*/
void
err_ret(const char *fmt, ...)
{
va_list ap;
va_start(ap, fmt);
err_doit(1, errno, fmt, ap);
va_end(ap);
}
/*
* Fatal error related to a system call.
* Print a message and terminate.
*/
void
err_sys(const char *fmt, ...)
{
va_list ap;
va_start(ap, fmt);
err_doit(1, errno, fmt, ap);
va_end(ap);
exit(1);
}
/*
* Fatal error unrelated to a system call.
* Error code passed as explict parameter.
* Print a message and terminate.
*/
void
err_exit(int error, const char *fmt, ...)
{
va_list ap;
va_start(ap, fmt);
err_doit(1, error, fmt, ap);
va_end(ap);
exit(1);
}
/*
* Fatal error related to a system call.
* Print a message, dump core, and terminate.
*/
void
err_dump(const char *fmt, ...)
{
va_list ap;
va_start(ap, fmt);
err_doit(1, errno, fmt, ap);
va_end(ap);
abort(); /* dump core and terminate */
exit(1); /* shouldn't get here */
}
/*
* Nonfatal error unrelated to a system call.
* Print a message and return.
*/
void
err_msg(const char *fmt, ...)
{
va_list ap;
va_start(ap, fmt);
err_doit(0, 0, fmt, ap);
va_end(ap);
}
/*
* Fatal error unrelated to a system call.
* Print a message and terminate.
*/
void
err_quit(const char *fmt, ...)
{
va_list ap;
va_start(ap, fmt);
err_doit(0, 0, fmt, ap);
va_end(ap);
exit(1);
}
/*
* Print a message and return to caller.
* Caller specifies "errnoflag".
*/
static void
err_doit(int errnoflag, int error, const char *fmt, va_list ap)
{
char buf[MAXLINE];
vsnprintf(buf, MAXLINE, fmt, ap);
if (errnoflag)
snprintf(buf+strlen(buf), MAXLINE-strlen(buf), ": %s",
strerror(error));
strcat(buf, " ");
fflush(stdout); /* in case stdout and stderr are the same */
fputs(buf, stderr);
fflush(NULL); /* flushes all stdio output streams */
}
然后在你需要使用这几种错误处理函数的程序源代码里加入
#include
就好了。
|
我觉得学编程只知道结果是不行的,楼主应该学会去debug,看问题出在什么地方。
这才是学习的正确方法阿。
这才是学习的正确方法阿。
|
建议下载整个源代码,然后好好研究。
|
//#include
你干嘛把它注释掉呀
你干嘛把它注释掉呀