Main Page | Modules | Class List | File List | Class Members | File Members | Related Pages

ctor.c

Go to the documentation of this file.
00001 /* $Id: ctor.c,v 1.2 2003/11/20 09:15:44 ch12 Exp $ */
00002 /*****************************************************************************/
00011 /* (c) 2003 Technische Universitaet Dresden
00012  * This file is part of DROPS, which is distributed under the terms of the
00013  * GNU General Public License 2. Please see the COPYING file for details.
00014  */
00015 
00016 #include <l4/dde_linux/ctor.h>
00017 
00018 void l4dde_do_initcalls(void)
00019 {
00020   l4dde_initcall_t *fn;
00021 
00022   for(fn = &__DDE_CTOR_LIST__; fn < &__DDE_CTOR_END__; fn++)
00023     (*fn)();
00024 }

Linux DDE, written by Christian Helmuth  © 2003 Technische Universitaet Dresden