From mboxrd@z Thu Jan 1 00:00:00 1970 Message-ID: Date: Mon, 17 Jan 2005 11:01:35 -0500 From: Russ Cox To: Fans of the OS Plan 9 from Bell Labs <9fans@cse.psu.edu> Subject: Re: [9fans] plan9port update In-Reply-To: Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit References: Topicbox-Message-UUID: 32073c2c-eace-11e9-9e20-41e7f4b1d025 > Does this means I can compile and run p9port on Tru64 UNIX? > When I tried last, there was no lock related assembly codes there. Drawterm once ran on Tru64 atop pthreads with no problems, so it's worth trying. You may have to create a getcallerpc-alpha.c in src/lib9: #include #include ulong getcallerpc(ulong *x) { return 0; } is fine to get going. Russ