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

📄 incr_rwlock1.c

📁 这是unix网络编程一书的源代码希望能对大家的学习提供一种便利
💻 C
字号:
/* include main */
#include	"unpipc.h"
#include	<synch.h>		/* Solaris header */

void	 Rw_wrlock(rwlock_t *rwptr);
void	 Rw_unlock(rwlock_t *rwptr);

#define	MAXNTHREADS	100

int		nloop;

struct {
  rwlock_t	rwlock;			/* the Solaris datatype */
  long	counter;
} shared;					/* init to 0 -> USYNC_THREAD */

void	*incr(void *);

int
main(int argc, char **argv)
{
	int		i, nthreads;
	pthread_t	tid[MAXNTHREADS];

	if (argc != 3)
		err_quit("usage: incr_rwlock1 <#loops> <#threads>");
	nloop = atoi(argv[1]);
	nthreads = min(atoi(argv[2]), MAXNTHREADS);

		/* 4obtain write lock */
	Rw_wrlock(&shared.rwlock);

		/* 4create all the threads */
	Set_concurrency(nthreads);
	for (i = 0; i < nthreads; i++) {
		Pthread_create(&tid[i], NULL, incr, NULL);
	}
		/* 4start the timer and release the write lock */
	Start_time();
	Rw_unlock(&shared.rwlock);

		/* 4wait for all the threads */
	for (i = 0; i < nthreads; i++) {
		Pthread_join(tid[i], NULL);
	}
	printf("microseconds: %.0f usec\n", Stop_time());
	if (shared.counter != nloop * nthreads)
		printf("error: counter = %ld\n", shared.counter);

	exit(0);
}
/* end main */

/* include incr */
void *
incr(void *arg)
{
	int		i;

	for (i = 0; i < nloop; i++) {
		Rw_wrlock(&shared.rwlock);
		shared.counter++;
		Rw_unlock(&shared.rwlock);
	}
	return(NULL);
}
/* end incr */

void
Rw_wrlock(rwlock_t *rwptr)
{
	int		n;

	if ( (n = rw_wrlock(rwptr)) == 0)
		return;
	errno = n;
	err_sys("rw_wrlock error");
}

void
Rw_unlock(rwlock_t *rwptr)
{
	int		n;

	if ( (n = rw_unlock(rwptr)) == 0)
		return;
	errno = n;
	err_sys("rw_unlock error");
}

⌨️ 快捷键说明

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