Xenomai API
2.5.6.1
|
00001 /* 00002 * Copyright (C) 2001,2002,2003 Philippe Gerum <[email protected]>. 00003 * 00004 * Xenomai is free software; you can redistribute it and/or modify 00005 * it under the terms of the GNU General Public License as published 00006 * by the Free Software Foundation; either version 2 of the License, 00007 * or (at your option) any later version. 00008 * 00009 * Xenomai is distributed in the hope that it will be useful, but 00010 * WITHOUT ANY WARRANTY; without even the implied warranty of 00011 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 00012 * General Public License for more details. 00013 * 00014 * You should have received a copy of the GNU General Public License 00015 * along with Xenomai; if not, write to the Free Software 00016 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 00017 * 02111-1307, USA. 00018 */ 00019 00020 #ifndef _XENO_NUCLEUS_VERSION_H 00021 #define _XENO_NUCLEUS_VERSION_H 00022 00023 #define XENO_VERSION(maj,min,rev) (((maj)<<16)|((min)<<8)|(rev)) 00024 00025 #define XENO_VERSION_CODE XENO_VERSION(CONFIG_XENO_VERSION_MAJOR, \ 00026 CONFIG_XENO_VERSION_MINOR, \ 00027 CONFIG_XENO_REVISION_LEVEL) 00028 00029 #define XENO_VERSION_NAME "Wormhole Wizards" 00030 00031 #define XENO_VERSION_STRING "2.5.6.1" 00032 00033 #endif /* _XENO_NUCLEUS_VERSION_H */