📄 init.c
字号:
/* * Copyright (C) 2005 Joerg Langenberg <joerg.langenberg@gmx.net>. * * 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 <errno.h>#include <stdlib.h>#include <string.h>#include <rtdm/syscall.h>int __rtdm_muxid = -1;static __attribute__((constructor)) void __init_rtdm_interface(void){ xnfeatinfo_t finfo; int muxid; muxid = XENOMAI_SYSBIND(RTDM_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: /* we ignore this and fail later when the user tries to open a device or socket. */ break; default: if (muxid < 0) { fprintf(stderr,"Xenomai: binding failed: %s.\n",strerror(-muxid)); exit(1); } __rtdm_muxid = muxid; break; }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -