Mercurial > flash_v2
view packages/net/tcpip/current/src/ecos/init.cxx @ 1777:c16341b1bac6 default tip
* Added execute permissions to files missed in conversion from CVS
| author | alexs |
|---|---|
| date | Mon, 12 Oct 2009 02:26:09 +0100 |
| parents | e0c0827131d1 |
| children |
line wrap: on
line source
//========================================================================== // // ecos/init.cxx // // Networking package initializer class // //========================================================================== //####ECOSPDCOPYRIGHTBEGIN#### // // Copyright (C) 2000, 2001, 2002 Red Hat, Inc. // All Rights Reserved. // // Permission is granted to use, copy, modify and redistribute this // file. // //####ECOSPDCOPYRIGHTEND#### //========================================================================== //#####DESCRIPTIONBEGIN#### // // Author(s): gthomas // Contributors: gthomas // Date: 2000-01-10 // Purpose: // Description: // // //####DESCRIPTIONEND#### // //========================================================================== // Network initialization #include <pkgconf/system.h> #include <pkgconf/hal.h> #include <cyg/infra/cyg_type.h> #define NET_INIT CYGBLD_ATTRIB_INIT_AFTER(CYG_INIT_LIBC) // This is a dummy class just so we can execute the network package // initialization at it's proper priority externC void cyg_net_init(void); class net_init_class { public: net_init_class(void) { cyg_net_init(); } }; // And here's an instance of the class just to make the code run static net_init_class _net_init NET_INIT; externC void cyg_do_net_init(void) { }
