[BACK]Return to hello.c CVS log [TXT][DIR] Up to [local] / funnyos / tasks

File: [local] / funnyos / tasks / hello.c (download)

Revision 1.1, Tue Nov 20 16:09:16 2007 UTC (16 years, 6 months ago) by nbrk
Branch: MAIN

dummy "hello" task; just print Hello and spin-off until doomsday

/*
 * $Id: hello.c,v 1.1 2007/11/20 16:09:16 nbrk Exp $
 */
#include <sys/types.h>

#include <libkern/printf.h>

void
hello_enter()
{
	printf("hello task: enter\n");

	while(1)
		;
}