]> rtime.felk.cvut.cz Git - orte.git/blob - orte/liborte/ORTEInit.c
Update of ORTE. Configured to compile for Linux out of box.
[orte.git] / orte / liborte / ORTEInit.c
1 /*
2  *  $Id: ORTEInit.c,v 0.0.0.1           2003/08/21 
3  *
4  *  DEBUG:  section 20                  Initialization of ORTE
5  *  AUTHOR: Petr Smolik                 petr.smolik@wo.cz
6  *
7  *  ORTE - OCERA Real-Time Ethernet     http://www.ocera.org/
8  *  --------------------------------------------------------------------
9  *
10  *  This program is free software; you can redistribute it and/or modify
11  *  it under the terms of the GNU General Public License as published by
12  *  the Free Software Foundation; either version 2 of the License, or
13  *  (at your option) any later version.
14  *  
15  *  This program is distributed in the hope that it will be useful,
16  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
17  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18  *  GNU General Public License for more details.
19  *  
20  */ 
21
22 #include "orte.h"
23
24 #ifdef CONFIG_ORTE_RT
25 MODULE_LICENSE("GPL");
26 #endif
27
28 /*****************************************************************************/
29 void
30 ORTEInit(void) {
31   SEQUENCE_NUMBER_NONE(noneSN);
32   NTPTIME_ZERO(zNtpTime);
33   NTPTIME_INFINITE(iNtpTime);
34   sock_start();
35   db_init(NULL,"");              //no debug info
36 }
37
38
39
40
41
42