Plan 9 from Bell Labs’s /usr/web/sources/contrib/quanstro/locktest/sempingpong.c

Copyright © 2021 Plan 9 Foundation.
Distributed under the MIT License.
Download the Plan 9 distribution.


#include <u.h>
#include <libc.h>

enum {
	N	= 1 * 1000*1000,
};

long sem1;
uchar buffer[128];
long sem2;
uchar buffer2[128];

void
thread1(void)
{
	int i;

	for(i = 0; i < N; i++){
		semacquire(&sem1, 1);
		semrelease(&sem2, 1);
	}
	wait();
	exits("");
}

void
thread2(void)
{
	int i;

	for(i = 0; i < N; i++){
		semrelease(&sem1, 1);
		semacquire(&sem2, 1);
	}
	exits("");
}

void
main(void)
{
	switch(rfork(RFPROC|RFMEM)){
	case -1:
		sysfatal("fork: %r");
	case 0:
		thread2();
	default:
		thread1();
	}
}

Bell Labs OSI certified Powered by Plan 9

(Return to Plan 9 Home Page)

Copyright © 2021 Plan 9 Foundation. All Rights Reserved.
Comments to webmaster@9p.io.