oskit/oskit-20020317/examples/dyntest
dzavalishin f85eb2576f import 2016-02-19 15:02:31 +03:00
..
GNUmakefile.in import 2016-02-19 15:02:31 +03:00
GNUmakerules import 2016-02-19 15:02:31 +03:00
README import 2016-02-19 15:02:31 +03:00
dopey.c import 2016-02-19 15:02:31 +03:00
dummy.c import 2016-02-19 15:02:31 +03:00
dyntest.c import 2016-02-19 15:02:31 +03:00
foo.c import 2016-02-19 15:02:31 +03:00
stub.c import 2016-02-19 15:02:31 +03:00

README

Directories: oskit/examples/dyntest
Target: dyntest dummy.so dopey.so
Original Code Source:
	Flux Research Group, University of Utah
Description: 
	This directory contains a demonstration of how to use the
	runtime linker/loader (RTLD) library. The example kernel
	(dyntest) will load dummy.so, find a symbol in it, and then
	call that function. The loaded file (dummy.so) contains a
	trivial function that calls printf.

	See the extensive comments in the GNUmakerules file on how to
	link the kernel, and build shared libraries for it. See the
	comments in dyntest.c and dummy.c that explain what is
	happening.