Plan 9 from Bell Labs’s /usr/web/sources/patch/applied/nsec/nsec.c.new

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


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


static uvlong order = 0x0001020304050607ULL;

static void
be2vlong(vlong *to, uchar *f)
{
	uchar *t, *o;
	int i;

	t = (uchar*)to;
	o = (uchar*)&order;
	for(i = 0; i < sizeof order; i++)
		t[o[i]] = f[i];
}

/*
	Reopen /dev/bintime on a failed read on the theory
	that the fd was mistakenly closed.  Beware rfork(RFFDG).
*/
vlong
nsec(void)
{
	static int fd = -1;
	uchar b[8];
	vlong t;
	int i;

	for(i = 0; i < 2; i++){
		if(fd < 0 && (fd = open("/dev/bintime", OREAD|OCEXEC)) < 0)
			return 0;
		if(pread(fd, b, sizeof b, 0) == sizeof b){
			be2vlong(&t, b);
			return t;
		}
		close(fd);
		fd = -1;
	}
	return 0;
}

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.