]> rtime.felk.cvut.cz Git - orte.git/blob - orte/liborte/ORTEInit.c
Added prerelease of ORTE-0.2 (Real Time Publisher Subscriber communication protocol...
[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 /*****************************************************************************/
25 void
26 ORTEInit(void) {
27   SEQUENCE_NUMBER_NONE(noneSN);
28   NTPTIME_ZERO(zNtpTime);
29   NTPTIME_INFINITE(iNtpTime);
30   sock_start();
31   db_init(NULL,"");              //no debug info
32 }
33
34
35
36
37
38