📄 init.c
字号:
/* * Copyright (C) 2001-2005 Philippe Gerum <rpm@xenomai.org>. * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2 of the License, or (at your option) any later version. * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. * You should have received a copy of the GNU Lesser General Public * License along with this library; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA. */#include <stdio.h>#include <stdlib.h>#include <string.h>#include <rtai/syscall.h>int __rtai_muxid = -1;static __attribute__((constructor)) void __init_rtai_interface(void){ xnfeatinfo_t finfo; int muxid; muxid = XENOMAI_SYSBIND(RTAI_SKIN_MAGIC, XENOMAI_FEAT_DEP, XENOMAI_ABI_REV, &finfo); switch (muxid) { case -EINVAL: fprintf(stderr,"Xenomai: incompatible feature set\n"); fprintf(stderr,"(required=\"%s\", present=\"%s\", missing=\"%s\").\n", finfo.feat_man_s,finfo.feat_all_s,finfo.feat_mis_s); exit(1); case -ENOEXEC: fprintf(stderr,"Xenomai: incompatible ABI revision level\n"); fprintf(stderr,"(needed=%lu, current=%lu).\n", XENOMAI_ABI_REV,finfo.abirev); exit(1); case -ENOSYS: case -ESRCH: fprintf(stderr,"Xenomai: RTAI skin or CONFIG_XENO_OPT_PERVASIVE disabled.\n"); fprintf(stderr,"(modprobe xeno_rtai?)\n"); exit(1); default: if (muxid < 0) { fprintf(stderr,"Xenomai: binding failed: %s.\n",strerror(-muxid)); exit(1); } __rtai_muxid = muxid; break; }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -