]> rtime.felk.cvut.cz Git - orte.git/blob - orte/liborte/ORTEInit.c
new version 0.2.3
[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_all.h"
23 #ifdef __RTL__
24 #include <rtl.h>
25 #endif
26 #ifdef CONFIG_ORTE_RT
27 MODULE_LICENSE("GPL");
28 #endif
29
30 /*****************************************************************************/
31 void
32 ORTEInit(void) {
33   SEQUENCE_NUMBER_NONE(noneSN);
34   NTPTIME_ZERO(zNtpTime);
35   NTPTIME_INFINITE(iNtpTime);
36   sock_start();
37   db_init(NULL,"");              //no debug info
38 }
39
40
41
42
43
44