但问题是我在通过方法发送之前打印的PID和我在方法中接收后打印的PID完全不同。我无法弄清楚这一点。
void killbyPIDprocess(struct process** ptr,char* p)
{
int i=0;
printf("hi");
while(ptr[i]!=NULL)
{
printf("Inside while loop");
printf("%d\n",ptr[i]->pid);
printf("%d\n",*p);
if(strcmp(ptr[i]->pid,p)==0)
{
printf("Kill process of PID %d\n",p);
}
else
{
i++;
}
}
}
在循环方法中,我的条件是
void loop(char *input)
{
bool flag=true;
char **tokens;
struct process **ptr=(struct process*) malloc (BUFFERSIZE);//Is the array that contains pointers to all the processes created.
int ci=0;int i=0;
while(flag==true)
{
input=getInp(input);
tokens=tokenize(input);
if(strcasecmp(*tokens,"kill")==0)
{
strtok(tokens[1],"\n");
char* pid=(char*)malloc (BUFFERSIZE);
pid=tokens[1];
printf("%s",pid);
killbyPIDprocess(ptr, pid);
}
}
输入法只接受用户的输入。 tokenize方法使用strtok方法来标记输入。如果我输入kill(PID),它将转到方法killbyPIDprocess(ptr,pid),其中ptr是包含struct进程的所有指针的双指针。我存储了创建过程信息的过程信息。我在循环方法中打印的pid与我给它的输入相同,即我想要杀死我的进程的一个pid,但是当我通过killbyPIDprocess方法传递此pid时,它显示了一些其他值。我还没有开始真正处理杀戮代码,因为它一直给我错误。我使用print语句来跟踪我的代码有多少工作。我对C和自学都比较新,所以请指出错误。
答案 0 :(得分:1)
printf("%d\n",*p);
将为缓冲区中的第一个字符打印数字代码,因此您必须使用%s
格式说明符 - printf("%s\n", p);
来获得相同的结果。
此代码if(strcmp(ptr[i]->pid,p)==0)
也不正确。 process::pid
成员具有pid_t
类型,这是一个有符号整数。在字符串比较例程中使用它是一种未定义的行为(不确定它甚至会编译)。要比较PID,您必须使用例如atoi
函数将字符串数据转换为整数。然后,您可以直接将它们与==
运算符进行比较。