10.12作业

1.孤儿进程。

#include <stdio.h>
#include <sys/types.h>
#include <unistd.h>

int main(int argc, const char *argv[])
{
	pid_t pid=fork();
	if (pid>0)
	{
	}
	else if (pid==0)
	{
		while(1)
		{
			printf("hello world\n");
			sleep(1);
		}
	}
	else if (pid<0)
	{
		perror("fork");
		return -1;
	}
	
	return 0;       //关闭用killall -9 a.out
}

2.僵尸进程

#include <stdio.h>
#include <sys/types.h>
#include <unistd.h>
int main(int argc, const char *argv[])
{
	pid_t pid=fork();
	if (pid==0)
	{
	}
	else if (pid>0)
	{
		while(1)
		{
			sleep(1);
			printf("hello world\n");
		}
	}
	else if (pid<0)
	{
		perror("fork");
		return -1;
	}
	return 0;
}

3.守护进程

#include <stdio.h>
#include <sys/types.h>
#include <unistd.h>
#include <sys/stat.h>
int main(int argc, const char *argv[])
{
	pid_t pid=fork();
	if (pid<0)
	{
		perror("fork");
		return -1;
	}
	else if(pid>0)
	{
	}
	else if (pid==0)
	{
		setsid();
		chdir("/");
		umask(0);
		for (int i=0; i<1024; i++)
		{
			close(i);
		}
		while(1) puts("1");sleep(1);
	}
	return 0;
}

4.1.修改标准lO时候写的时钟代码,要求输入'q后,能够退出该程序。

#include <stdio.h>
#include <time.h>
#include <sys/types.h>
#include <unistd.h>
#include <time.h>
#include <pthread.h>
void* call_back(void *p)
{
	time_t time_cur;
	while(1)
	{
	time_cur =time(NULL);
	if (time_cur==-1)
	{
		perror("time");
		return NULL;
	}
	struct tm*c_t;
	c_t=localtime(&time_cur);
		printf("%d-%02d-%02d %02d-%02d-%02d\r",c_t->tm_year+1900,
				c_t->tm_mon+1,c_t->tm_mday
			,c_t->tm_hour,c_t->tm_min,c_t->tm_sec);
		fflush(stdout);
		sleep(1);
	}
	
}
int main(int argc, const char *argv[])
{
	pthread_t num;
	int pth=pthread_create(&num,NULL,call_back,NULL);
	if (pth!=0)
	{
		perror("pthread_create");
		return -1;
	}
	char a;
	while(1)
	{
	scanf("%c",&a);
		if (a=='q')
		{
			break;
		}
	}


	
	return 0;
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值