├── .gitignore ├── COPYING ├── GNUmakefile.am ├── Kconfig ├── Makefile.am ├── README.BIOS ├── README.INSTALL ├── README.ISOLCPUS ├── README.md ├── autogen.sh ├── configure.ac ├── debian ├── changelog ├── compat ├── configure ├── control.in ├── rules.in ├── source │ └── format └── update-dch-from-git ├── defconfig ├── include ├── GNUmakefile.am ├── asm-x86 │ ├── GNUmakefile.am │ ├── rtai.h │ ├── rtai_atomic.h │ ├── rtai_fpu.h │ ├── rtai_hal.h │ ├── rtai_lxrt.h │ ├── rtai_sched.h │ └── rtai_srq.h ├── rtai.h ├── rtai_defs.h.in ├── rtai_fifos.h ├── rtai_hal_names.h ├── rtai_lxrt.h ├── rtai_malloc.h ├── rtai_mbx.h ├── rtai_msg.h ├── rtai_nam2num.h ├── rtai_names.h ├── rtai_prinher.h ├── rtai_proc_fs.h ├── rtai_proxies.h ├── rtai_registry.h ├── rtai_rwl.h ├── rtai_scb.h ├── rtai_sched.h ├── rtai_schedcore.h ├── rtai_sem.h ├── rtai_shm.h ├── rtai_signal.h ├── rtai_spl.h ├── rtai_taskq.h ├── rtai_trace.h ├── rtai_types.h ├── rtai_vla.h └── rtai_wrappers.h ├── ksrc └── v5.4.290 │ ├── 0001-IPIPE-5.4-core-release-14.patch │ ├── 0002-Convert-to-RTAI.patch │ ├── 0003-Countless-Kconfig-tweaks-for-IPIPE.patch │ └── 0004-Allow-OOT-modules-without-tainting-kernel.patch ├── lgpl.txt ├── m4 └── .touch ├── scripts ├── GNUmakefile.am ├── autoconf │ ├── compile │ ├── config.guess │ ├── config.sub │ ├── depcomp │ ├── install-sh │ ├── ltmain.sh │ └── missing ├── bootstrap ├── kconfig │ ├── .gitignore │ ├── Makefile.kconfig │ ├── check.sh │ ├── confdata.c │ ├── expr.c │ ├── expr.h │ ├── images.c │ ├── kxgettext.c │ ├── list.h │ ├── lkc.h │ ├── lkc_proto.h │ ├── lxdialog │ │ ├── .gitignore │ │ ├── BIG.FAT.WARNING │ │ ├── check-lxdialog.sh │ │ ├── checklist.c │ │ ├── dialog.h │ │ ├── inputbox.c │ │ ├── menubox.c │ │ ├── textbox.c │ │ ├── util.c │ │ └── yesno.c │ ├── mconf.c │ ├── menu.c │ ├── symbol.c │ ├── util.c │ ├── zconf.hash.c_shipped │ ├── zconf.l │ ├── zconf.lex.c_shipped │ ├── zconf.tab.c_shipped │ └── zconf.y ├── rtai-config.in ├── rtai-info └── rtai-load.in ├── src ├── GNUmakefile.am ├── ipc │ ├── GNUmakefile.am │ ├── fifos │ │ ├── GNUmakefile.am │ │ ├── Makefile.kbuild │ │ ├── README │ │ ├── fifos.c │ │ └── rtai_fifos.udev │ ├── mbx │ │ ├── GNUmakefile.am │ │ ├── Makefile.kbuild │ │ └── mbx.c │ ├── msg │ │ ├── GNUmakefile.am │ │ ├── Makefile.kbuild │ │ └── msg.c │ ├── sem │ │ ├── GNUmakefile.am │ │ ├── Makefile.kbuild │ │ └── sem.c │ └── shm │ │ ├── GNUmakefile.am │ │ ├── Makefile.kbuild │ │ ├── README │ │ ├── kvmem.c │ │ ├── rtai_shm.udev │ │ └── shm.c ├── malloc │ ├── GNUmakefile.am │ ├── Makefile.kbuild │ ├── README │ └── malloc.c ├── math │ ├── COPYRIGHT │ ├── GNUmakefile.am │ ├── Makefile.kbuild │ ├── README.KLIBM │ ├── VERSION │ ├── __cos.c │ ├── __math_invalid.c │ ├── __math_oflow.c │ ├── __math_uflow.c │ ├── __math_xflow.c │ ├── __rem_pio2.c │ ├── __rem_pio2_large.c │ ├── __sin.c │ ├── __tan.c │ ├── acos.c │ ├── alltypes.h │ ├── asin.c │ ├── atan.c │ ├── atan2.c │ ├── ceil.c │ ├── cos.c │ ├── endian.h │ ├── exp.c │ ├── exp_data.c │ ├── exp_data.h │ ├── fabs.c │ ├── features.h │ ├── float.h │ ├── floor.c │ ├── fmax.c │ ├── fmin.c │ ├── fmod.c │ ├── libm.h │ ├── math.h │ ├── pow.c │ ├── pow_data.c │ ├── pow_data.h │ ├── round.c │ ├── rtai_libm.c │ ├── scalbn.c │ ├── sin.c │ ├── sincos.c │ ├── sqrt.c │ ├── stdint.h │ └── tan.c └── sched │ ├── GNUmakefile.am │ ├── Makefile.kbuild │ ├── README.CALIBRATE │ ├── api.c │ ├── calibrate.c │ ├── rtai_hal.c │ ├── runinfo │ ├── sched.c │ ├── signal.c │ └── sys.c └── testsuite ├── GNUmakefile.am ├── README ├── display.c ├── latency.c └── runinfo /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NTULINUX/RTAI/HEAD/.gitignore -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NTULINUX/RTAI/HEAD/COPYING -------------------------------------------------------------------------------- /GNUmakefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NTULINUX/RTAI/HEAD/GNUmakefile.am -------------------------------------------------------------------------------- /Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NTULINUX/RTAI/HEAD/Kconfig -------------------------------------------------------------------------------- /Makefile.am: -------------------------------------------------------------------------------- 1 | ACLOCAL_AMFLAGS = -I m4 2 | -------------------------------------------------------------------------------- /README.BIOS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NTULINUX/RTAI/HEAD/README.BIOS -------------------------------------------------------------------------------- /README.INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NTULINUX/RTAI/HEAD/README.INSTALL -------------------------------------------------------------------------------- /README.ISOLCPUS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NTULINUX/RTAI/HEAD/README.ISOLCPUS -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NTULINUX/RTAI/HEAD/README.md -------------------------------------------------------------------------------- /autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NTULINUX/RTAI/HEAD/autogen.sh -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NTULINUX/RTAI/HEAD/configure.ac -------------------------------------------------------------------------------- /debian/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NTULINUX/RTAI/HEAD/debian/changelog -------------------------------------------------------------------------------- /debian/compat: -------------------------------------------------------------------------------- 1 | 10 2 | -------------------------------------------------------------------------------- /debian/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NTULINUX/RTAI/HEAD/debian/configure -------------------------------------------------------------------------------- /debian/control.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NTULINUX/RTAI/HEAD/debian/control.in -------------------------------------------------------------------------------- /debian/rules.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NTULINUX/RTAI/HEAD/debian/rules.in -------------------------------------------------------------------------------- /debian/source/format: -------------------------------------------------------------------------------- 1 | 1.0 2 | -------------------------------------------------------------------------------- /debian/update-dch-from-git: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NTULINUX/RTAI/HEAD/debian/update-dch-from-git -------------------------------------------------------------------------------- /defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NTULINUX/RTAI/HEAD/defconfig -------------------------------------------------------------------------------- /include/GNUmakefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NTULINUX/RTAI/HEAD/include/GNUmakefile.am -------------------------------------------------------------------------------- /include/asm-x86/GNUmakefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NTULINUX/RTAI/HEAD/include/asm-x86/GNUmakefile.am -------------------------------------------------------------------------------- /include/asm-x86/rtai.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NTULINUX/RTAI/HEAD/include/asm-x86/rtai.h -------------------------------------------------------------------------------- /include/asm-x86/rtai_atomic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NTULINUX/RTAI/HEAD/include/asm-x86/rtai_atomic.h -------------------------------------------------------------------------------- /include/asm-x86/rtai_fpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NTULINUX/RTAI/HEAD/include/asm-x86/rtai_fpu.h -------------------------------------------------------------------------------- /include/asm-x86/rtai_hal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NTULINUX/RTAI/HEAD/include/asm-x86/rtai_hal.h -------------------------------------------------------------------------------- /include/asm-x86/rtai_lxrt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NTULINUX/RTAI/HEAD/include/asm-x86/rtai_lxrt.h -------------------------------------------------------------------------------- /include/asm-x86/rtai_sched.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NTULINUX/RTAI/HEAD/include/asm-x86/rtai_sched.h -------------------------------------------------------------------------------- /include/asm-x86/rtai_srq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NTULINUX/RTAI/HEAD/include/asm-x86/rtai_srq.h -------------------------------------------------------------------------------- /include/rtai.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NTULINUX/RTAI/HEAD/include/rtai.h -------------------------------------------------------------------------------- /include/rtai_defs.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NTULINUX/RTAI/HEAD/include/rtai_defs.h.in -------------------------------------------------------------------------------- /include/rtai_fifos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NTULINUX/RTAI/HEAD/include/rtai_fifos.h -------------------------------------------------------------------------------- /include/rtai_hal_names.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NTULINUX/RTAI/HEAD/include/rtai_hal_names.h -------------------------------------------------------------------------------- /include/rtai_lxrt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NTULINUX/RTAI/HEAD/include/rtai_lxrt.h -------------------------------------------------------------------------------- /include/rtai_malloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NTULINUX/RTAI/HEAD/include/rtai_malloc.h -------------------------------------------------------------------------------- /include/rtai_mbx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NTULINUX/RTAI/HEAD/include/rtai_mbx.h -------------------------------------------------------------------------------- /include/rtai_msg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NTULINUX/RTAI/HEAD/include/rtai_msg.h -------------------------------------------------------------------------------- /include/rtai_nam2num.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NTULINUX/RTAI/HEAD/include/rtai_nam2num.h -------------------------------------------------------------------------------- /include/rtai_names.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NTULINUX/RTAI/HEAD/include/rtai_names.h -------------------------------------------------------------------------------- /include/rtai_prinher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NTULINUX/RTAI/HEAD/include/rtai_prinher.h -------------------------------------------------------------------------------- /include/rtai_proc_fs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NTULINUX/RTAI/HEAD/include/rtai_proc_fs.h -------------------------------------------------------------------------------- /include/rtai_proxies.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NTULINUX/RTAI/HEAD/include/rtai_proxies.h -------------------------------------------------------------------------------- /include/rtai_registry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NTULINUX/RTAI/HEAD/include/rtai_registry.h -------------------------------------------------------------------------------- /include/rtai_rwl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NTULINUX/RTAI/HEAD/include/rtai_rwl.h -------------------------------------------------------------------------------- /include/rtai_scb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NTULINUX/RTAI/HEAD/include/rtai_scb.h -------------------------------------------------------------------------------- /include/rtai_sched.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NTULINUX/RTAI/HEAD/include/rtai_sched.h -------------------------------------------------------------------------------- /include/rtai_schedcore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NTULINUX/RTAI/HEAD/include/rtai_schedcore.h -------------------------------------------------------------------------------- /include/rtai_sem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NTULINUX/RTAI/HEAD/include/rtai_sem.h -------------------------------------------------------------------------------- /include/rtai_shm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NTULINUX/RTAI/HEAD/include/rtai_shm.h -------------------------------------------------------------------------------- /include/rtai_signal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NTULINUX/RTAI/HEAD/include/rtai_signal.h -------------------------------------------------------------------------------- /include/rtai_spl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NTULINUX/RTAI/HEAD/include/rtai_spl.h -------------------------------------------------------------------------------- /include/rtai_taskq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NTULINUX/RTAI/HEAD/include/rtai_taskq.h -------------------------------------------------------------------------------- /include/rtai_trace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NTULINUX/RTAI/HEAD/include/rtai_trace.h -------------------------------------------------------------------------------- /include/rtai_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NTULINUX/RTAI/HEAD/include/rtai_types.h -------------------------------------------------------------------------------- /include/rtai_vla.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NTULINUX/RTAI/HEAD/include/rtai_vla.h -------------------------------------------------------------------------------- /include/rtai_wrappers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NTULINUX/RTAI/HEAD/include/rtai_wrappers.h -------------------------------------------------------------------------------- /ksrc/v5.4.290/0001-IPIPE-5.4-core-release-14.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NTULINUX/RTAI/HEAD/ksrc/v5.4.290/0001-IPIPE-5.4-core-release-14.patch -------------------------------------------------------------------------------- /ksrc/v5.4.290/0002-Convert-to-RTAI.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NTULINUX/RTAI/HEAD/ksrc/v5.4.290/0002-Convert-to-RTAI.patch -------------------------------------------------------------------------------- /ksrc/v5.4.290/0003-Countless-Kconfig-tweaks-for-IPIPE.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NTULINUX/RTAI/HEAD/ksrc/v5.4.290/0003-Countless-Kconfig-tweaks-for-IPIPE.patch -------------------------------------------------------------------------------- /ksrc/v5.4.290/0004-Allow-OOT-modules-without-tainting-kernel.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NTULINUX/RTAI/HEAD/ksrc/v5.4.290/0004-Allow-OOT-modules-without-tainting-kernel.patch -------------------------------------------------------------------------------- /lgpl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NTULINUX/RTAI/HEAD/lgpl.txt -------------------------------------------------------------------------------- /m4/.touch: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scripts/GNUmakefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NTULINUX/RTAI/HEAD/scripts/GNUmakefile.am -------------------------------------------------------------------------------- /scripts/autoconf/compile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NTULINUX/RTAI/HEAD/scripts/autoconf/compile -------------------------------------------------------------------------------- /scripts/autoconf/config.guess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NTULINUX/RTAI/HEAD/scripts/autoconf/config.guess -------------------------------------------------------------------------------- /scripts/autoconf/config.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NTULINUX/RTAI/HEAD/scripts/autoconf/config.sub -------------------------------------------------------------------------------- /scripts/autoconf/depcomp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NTULINUX/RTAI/HEAD/scripts/autoconf/depcomp -------------------------------------------------------------------------------- /scripts/autoconf/install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NTULINUX/RTAI/HEAD/scripts/autoconf/install-sh -------------------------------------------------------------------------------- /scripts/autoconf/ltmain.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NTULINUX/RTAI/HEAD/scripts/autoconf/ltmain.sh -------------------------------------------------------------------------------- /scripts/autoconf/missing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NTULINUX/RTAI/HEAD/scripts/autoconf/missing -------------------------------------------------------------------------------- /scripts/bootstrap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NTULINUX/RTAI/HEAD/scripts/bootstrap -------------------------------------------------------------------------------- /scripts/kconfig/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NTULINUX/RTAI/HEAD/scripts/kconfig/.gitignore -------------------------------------------------------------------------------- /scripts/kconfig/Makefile.kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NTULINUX/RTAI/HEAD/scripts/kconfig/Makefile.kconfig -------------------------------------------------------------------------------- /scripts/kconfig/check.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NTULINUX/RTAI/HEAD/scripts/kconfig/check.sh -------------------------------------------------------------------------------- /scripts/kconfig/confdata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NTULINUX/RTAI/HEAD/scripts/kconfig/confdata.c -------------------------------------------------------------------------------- /scripts/kconfig/expr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NTULINUX/RTAI/HEAD/scripts/kconfig/expr.c -------------------------------------------------------------------------------- /scripts/kconfig/expr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NTULINUX/RTAI/HEAD/scripts/kconfig/expr.h -------------------------------------------------------------------------------- /scripts/kconfig/images.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NTULINUX/RTAI/HEAD/scripts/kconfig/images.c -------------------------------------------------------------------------------- /scripts/kconfig/kxgettext.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NTULINUX/RTAI/HEAD/scripts/kconfig/kxgettext.c -------------------------------------------------------------------------------- /scripts/kconfig/list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NTULINUX/RTAI/HEAD/scripts/kconfig/list.h -------------------------------------------------------------------------------- /scripts/kconfig/lkc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NTULINUX/RTAI/HEAD/scripts/kconfig/lkc.h -------------------------------------------------------------------------------- /scripts/kconfig/lkc_proto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NTULINUX/RTAI/HEAD/scripts/kconfig/lkc_proto.h -------------------------------------------------------------------------------- /scripts/kconfig/lxdialog/.gitignore: -------------------------------------------------------------------------------- 1 | # 2 | # Generated files 3 | # 4 | lxdialog 5 | -------------------------------------------------------------------------------- /scripts/kconfig/lxdialog/BIG.FAT.WARNING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NTULINUX/RTAI/HEAD/scripts/kconfig/lxdialog/BIG.FAT.WARNING -------------------------------------------------------------------------------- /scripts/kconfig/lxdialog/check-lxdialog.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NTULINUX/RTAI/HEAD/scripts/kconfig/lxdialog/check-lxdialog.sh -------------------------------------------------------------------------------- /scripts/kconfig/lxdialog/checklist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NTULINUX/RTAI/HEAD/scripts/kconfig/lxdialog/checklist.c -------------------------------------------------------------------------------- /scripts/kconfig/lxdialog/dialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NTULINUX/RTAI/HEAD/scripts/kconfig/lxdialog/dialog.h -------------------------------------------------------------------------------- /scripts/kconfig/lxdialog/inputbox.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NTULINUX/RTAI/HEAD/scripts/kconfig/lxdialog/inputbox.c -------------------------------------------------------------------------------- /scripts/kconfig/lxdialog/menubox.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NTULINUX/RTAI/HEAD/scripts/kconfig/lxdialog/menubox.c -------------------------------------------------------------------------------- /scripts/kconfig/lxdialog/textbox.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NTULINUX/RTAI/HEAD/scripts/kconfig/lxdialog/textbox.c -------------------------------------------------------------------------------- /scripts/kconfig/lxdialog/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NTULINUX/RTAI/HEAD/scripts/kconfig/lxdialog/util.c -------------------------------------------------------------------------------- /scripts/kconfig/lxdialog/yesno.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NTULINUX/RTAI/HEAD/scripts/kconfig/lxdialog/yesno.c -------------------------------------------------------------------------------- /scripts/kconfig/mconf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NTULINUX/RTAI/HEAD/scripts/kconfig/mconf.c -------------------------------------------------------------------------------- /scripts/kconfig/menu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NTULINUX/RTAI/HEAD/scripts/kconfig/menu.c -------------------------------------------------------------------------------- /scripts/kconfig/symbol.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NTULINUX/RTAI/HEAD/scripts/kconfig/symbol.c -------------------------------------------------------------------------------- /scripts/kconfig/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NTULINUX/RTAI/HEAD/scripts/kconfig/util.c -------------------------------------------------------------------------------- /scripts/kconfig/zconf.hash.c_shipped: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NTULINUX/RTAI/HEAD/scripts/kconfig/zconf.hash.c_shipped -------------------------------------------------------------------------------- /scripts/kconfig/zconf.l: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NTULINUX/RTAI/HEAD/scripts/kconfig/zconf.l -------------------------------------------------------------------------------- /scripts/kconfig/zconf.lex.c_shipped: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NTULINUX/RTAI/HEAD/scripts/kconfig/zconf.lex.c_shipped -------------------------------------------------------------------------------- /scripts/kconfig/zconf.tab.c_shipped: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NTULINUX/RTAI/HEAD/scripts/kconfig/zconf.tab.c_shipped -------------------------------------------------------------------------------- /scripts/kconfig/zconf.y: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NTULINUX/RTAI/HEAD/scripts/kconfig/zconf.y -------------------------------------------------------------------------------- /scripts/rtai-config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NTULINUX/RTAI/HEAD/scripts/rtai-config.in -------------------------------------------------------------------------------- /scripts/rtai-info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NTULINUX/RTAI/HEAD/scripts/rtai-info -------------------------------------------------------------------------------- /scripts/rtai-load.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NTULINUX/RTAI/HEAD/scripts/rtai-load.in -------------------------------------------------------------------------------- /src/GNUmakefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NTULINUX/RTAI/HEAD/src/GNUmakefile.am -------------------------------------------------------------------------------- /src/ipc/GNUmakefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NTULINUX/RTAI/HEAD/src/ipc/GNUmakefile.am -------------------------------------------------------------------------------- /src/ipc/fifos/GNUmakefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NTULINUX/RTAI/HEAD/src/ipc/fifos/GNUmakefile.am -------------------------------------------------------------------------------- /src/ipc/fifos/Makefile.kbuild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NTULINUX/RTAI/HEAD/src/ipc/fifos/Makefile.kbuild -------------------------------------------------------------------------------- /src/ipc/fifos/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NTULINUX/RTAI/HEAD/src/ipc/fifos/README -------------------------------------------------------------------------------- /src/ipc/fifos/fifos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NTULINUX/RTAI/HEAD/src/ipc/fifos/fifos.c -------------------------------------------------------------------------------- /src/ipc/fifos/rtai_fifos.udev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NTULINUX/RTAI/HEAD/src/ipc/fifos/rtai_fifos.udev -------------------------------------------------------------------------------- /src/ipc/mbx/GNUmakefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NTULINUX/RTAI/HEAD/src/ipc/mbx/GNUmakefile.am -------------------------------------------------------------------------------- /src/ipc/mbx/Makefile.kbuild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NTULINUX/RTAI/HEAD/src/ipc/mbx/Makefile.kbuild -------------------------------------------------------------------------------- /src/ipc/mbx/mbx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NTULINUX/RTAI/HEAD/src/ipc/mbx/mbx.c -------------------------------------------------------------------------------- /src/ipc/msg/GNUmakefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NTULINUX/RTAI/HEAD/src/ipc/msg/GNUmakefile.am -------------------------------------------------------------------------------- /src/ipc/msg/Makefile.kbuild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NTULINUX/RTAI/HEAD/src/ipc/msg/Makefile.kbuild -------------------------------------------------------------------------------- /src/ipc/msg/msg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NTULINUX/RTAI/HEAD/src/ipc/msg/msg.c -------------------------------------------------------------------------------- /src/ipc/sem/GNUmakefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NTULINUX/RTAI/HEAD/src/ipc/sem/GNUmakefile.am -------------------------------------------------------------------------------- /src/ipc/sem/Makefile.kbuild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NTULINUX/RTAI/HEAD/src/ipc/sem/Makefile.kbuild -------------------------------------------------------------------------------- /src/ipc/sem/sem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NTULINUX/RTAI/HEAD/src/ipc/sem/sem.c -------------------------------------------------------------------------------- /src/ipc/shm/GNUmakefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NTULINUX/RTAI/HEAD/src/ipc/shm/GNUmakefile.am -------------------------------------------------------------------------------- /src/ipc/shm/Makefile.kbuild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NTULINUX/RTAI/HEAD/src/ipc/shm/Makefile.kbuild -------------------------------------------------------------------------------- /src/ipc/shm/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NTULINUX/RTAI/HEAD/src/ipc/shm/README -------------------------------------------------------------------------------- /src/ipc/shm/kvmem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NTULINUX/RTAI/HEAD/src/ipc/shm/kvmem.c -------------------------------------------------------------------------------- /src/ipc/shm/rtai_shm.udev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NTULINUX/RTAI/HEAD/src/ipc/shm/rtai_shm.udev -------------------------------------------------------------------------------- /src/ipc/shm/shm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NTULINUX/RTAI/HEAD/src/ipc/shm/shm.c -------------------------------------------------------------------------------- /src/malloc/GNUmakefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NTULINUX/RTAI/HEAD/src/malloc/GNUmakefile.am -------------------------------------------------------------------------------- /src/malloc/Makefile.kbuild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NTULINUX/RTAI/HEAD/src/malloc/Makefile.kbuild -------------------------------------------------------------------------------- /src/malloc/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NTULINUX/RTAI/HEAD/src/malloc/README -------------------------------------------------------------------------------- /src/malloc/malloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NTULINUX/RTAI/HEAD/src/malloc/malloc.c -------------------------------------------------------------------------------- /src/math/COPYRIGHT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NTULINUX/RTAI/HEAD/src/math/COPYRIGHT -------------------------------------------------------------------------------- /src/math/GNUmakefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NTULINUX/RTAI/HEAD/src/math/GNUmakefile.am -------------------------------------------------------------------------------- /src/math/Makefile.kbuild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NTULINUX/RTAI/HEAD/src/math/Makefile.kbuild -------------------------------------------------------------------------------- /src/math/README.KLIBM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NTULINUX/RTAI/HEAD/src/math/README.KLIBM -------------------------------------------------------------------------------- /src/math/VERSION: -------------------------------------------------------------------------------- 1 | 1.2.3 2 | -------------------------------------------------------------------------------- /src/math/__cos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NTULINUX/RTAI/HEAD/src/math/__cos.c -------------------------------------------------------------------------------- /src/math/__math_invalid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NTULINUX/RTAI/HEAD/src/math/__math_invalid.c -------------------------------------------------------------------------------- /src/math/__math_oflow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NTULINUX/RTAI/HEAD/src/math/__math_oflow.c -------------------------------------------------------------------------------- /src/math/__math_uflow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NTULINUX/RTAI/HEAD/src/math/__math_uflow.c -------------------------------------------------------------------------------- /src/math/__math_xflow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NTULINUX/RTAI/HEAD/src/math/__math_xflow.c -------------------------------------------------------------------------------- /src/math/__rem_pio2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NTULINUX/RTAI/HEAD/src/math/__rem_pio2.c -------------------------------------------------------------------------------- /src/math/__rem_pio2_large.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NTULINUX/RTAI/HEAD/src/math/__rem_pio2_large.c -------------------------------------------------------------------------------- /src/math/__sin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NTULINUX/RTAI/HEAD/src/math/__sin.c -------------------------------------------------------------------------------- /src/math/__tan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NTULINUX/RTAI/HEAD/src/math/__tan.c -------------------------------------------------------------------------------- /src/math/acos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NTULINUX/RTAI/HEAD/src/math/acos.c -------------------------------------------------------------------------------- /src/math/alltypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NTULINUX/RTAI/HEAD/src/math/alltypes.h -------------------------------------------------------------------------------- /src/math/asin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NTULINUX/RTAI/HEAD/src/math/asin.c -------------------------------------------------------------------------------- /src/math/atan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NTULINUX/RTAI/HEAD/src/math/atan.c -------------------------------------------------------------------------------- /src/math/atan2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NTULINUX/RTAI/HEAD/src/math/atan2.c -------------------------------------------------------------------------------- /src/math/ceil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NTULINUX/RTAI/HEAD/src/math/ceil.c -------------------------------------------------------------------------------- /src/math/cos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NTULINUX/RTAI/HEAD/src/math/cos.c -------------------------------------------------------------------------------- /src/math/endian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NTULINUX/RTAI/HEAD/src/math/endian.h -------------------------------------------------------------------------------- /src/math/exp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NTULINUX/RTAI/HEAD/src/math/exp.c -------------------------------------------------------------------------------- /src/math/exp_data.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NTULINUX/RTAI/HEAD/src/math/exp_data.c -------------------------------------------------------------------------------- /src/math/exp_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NTULINUX/RTAI/HEAD/src/math/exp_data.h -------------------------------------------------------------------------------- /src/math/fabs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NTULINUX/RTAI/HEAD/src/math/fabs.c -------------------------------------------------------------------------------- /src/math/features.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NTULINUX/RTAI/HEAD/src/math/features.h -------------------------------------------------------------------------------- /src/math/float.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NTULINUX/RTAI/HEAD/src/math/float.h -------------------------------------------------------------------------------- /src/math/floor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NTULINUX/RTAI/HEAD/src/math/floor.c -------------------------------------------------------------------------------- /src/math/fmax.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NTULINUX/RTAI/HEAD/src/math/fmax.c -------------------------------------------------------------------------------- /src/math/fmin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NTULINUX/RTAI/HEAD/src/math/fmin.c -------------------------------------------------------------------------------- /src/math/fmod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NTULINUX/RTAI/HEAD/src/math/fmod.c -------------------------------------------------------------------------------- /src/math/libm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NTULINUX/RTAI/HEAD/src/math/libm.h -------------------------------------------------------------------------------- /src/math/math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NTULINUX/RTAI/HEAD/src/math/math.h -------------------------------------------------------------------------------- /src/math/pow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NTULINUX/RTAI/HEAD/src/math/pow.c -------------------------------------------------------------------------------- /src/math/pow_data.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NTULINUX/RTAI/HEAD/src/math/pow_data.c -------------------------------------------------------------------------------- /src/math/pow_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NTULINUX/RTAI/HEAD/src/math/pow_data.h -------------------------------------------------------------------------------- /src/math/round.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NTULINUX/RTAI/HEAD/src/math/round.c -------------------------------------------------------------------------------- /src/math/rtai_libm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NTULINUX/RTAI/HEAD/src/math/rtai_libm.c -------------------------------------------------------------------------------- /src/math/scalbn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NTULINUX/RTAI/HEAD/src/math/scalbn.c -------------------------------------------------------------------------------- /src/math/sin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NTULINUX/RTAI/HEAD/src/math/sin.c -------------------------------------------------------------------------------- /src/math/sincos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NTULINUX/RTAI/HEAD/src/math/sincos.c -------------------------------------------------------------------------------- /src/math/sqrt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NTULINUX/RTAI/HEAD/src/math/sqrt.c -------------------------------------------------------------------------------- /src/math/stdint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NTULINUX/RTAI/HEAD/src/math/stdint.h -------------------------------------------------------------------------------- /src/math/tan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NTULINUX/RTAI/HEAD/src/math/tan.c -------------------------------------------------------------------------------- /src/sched/GNUmakefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NTULINUX/RTAI/HEAD/src/sched/GNUmakefile.am -------------------------------------------------------------------------------- /src/sched/Makefile.kbuild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NTULINUX/RTAI/HEAD/src/sched/Makefile.kbuild -------------------------------------------------------------------------------- /src/sched/README.CALIBRATE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NTULINUX/RTAI/HEAD/src/sched/README.CALIBRATE -------------------------------------------------------------------------------- /src/sched/api.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NTULINUX/RTAI/HEAD/src/sched/api.c -------------------------------------------------------------------------------- /src/sched/calibrate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NTULINUX/RTAI/HEAD/src/sched/calibrate.c -------------------------------------------------------------------------------- /src/sched/rtai_hal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NTULINUX/RTAI/HEAD/src/sched/rtai_hal.c -------------------------------------------------------------------------------- /src/sched/runinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NTULINUX/RTAI/HEAD/src/sched/runinfo -------------------------------------------------------------------------------- /src/sched/sched.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NTULINUX/RTAI/HEAD/src/sched/sched.c -------------------------------------------------------------------------------- /src/sched/signal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NTULINUX/RTAI/HEAD/src/sched/signal.c -------------------------------------------------------------------------------- /src/sched/sys.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NTULINUX/RTAI/HEAD/src/sched/sys.c -------------------------------------------------------------------------------- /testsuite/GNUmakefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NTULINUX/RTAI/HEAD/testsuite/GNUmakefile.am -------------------------------------------------------------------------------- /testsuite/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NTULINUX/RTAI/HEAD/testsuite/README -------------------------------------------------------------------------------- /testsuite/display.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NTULINUX/RTAI/HEAD/testsuite/display.c -------------------------------------------------------------------------------- /testsuite/latency.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NTULINUX/RTAI/HEAD/testsuite/latency.c -------------------------------------------------------------------------------- /testsuite/runinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NTULINUX/RTAI/HEAD/testsuite/runinfo --------------------------------------------------------------------------------