⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 shm_ts.c

📁 unix linux 编程实践源代码
💻 C
字号:
/* shm_ts.c : the time server using shared memory, a bizarre application  */#include	<stdio.h>#include	<sys/shm.h>#include	<time.h>#define	TIME_MEM_KEY	99			/* like a filename      */#define	SEG_SIZE	((size_t)100)		/* size of segment	*/#define oops(m,x)  { perror(m); exit(x); }main(){	int	seg_id;	char	*mem_ptr, *ctime();	long	now;	int	n;	/* create a shared memory segment */	seg_id = shmget( TIME_MEM_KEY, SEG_SIZE, IPC_CREAT|0777 );	if ( seg_id == -1 )		oops("shmget", 1);	/* attach to it and get a pointer to where it attaches */	mem_ptr = shmat( seg_id, NULL, 0 );	if ( mem_ptr == ( void *) -1 )		oops("shmat", 2);	/* run for a minute */	for(n=0; n<60; n++ ){		time( &now );			/* get the time	*/		strcpy(mem_ptr, ctime(&now));	/* write to mem */		sleep(1);			/* wait a sec   */	}			/* now remove it */	shmctl( seg_id, IPC_RMID, NULL );}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -