├── .gitignore ├── COPYING ├── Makefile ├── README.md ├── carrefour.pl ├── create_hooks.pl ├── include ├── carrefour.h ├── carrefour_machine.h ├── carrefour_main.h ├── carrefour_migrate.h ├── carrefour_rbtree.h ├── carrefour_tid_replication.h ├── carrefour_tids.h └── ibs_struct.h └── src ├── carrefour.c ├── carrefour_machine.c ├── carrefour_main.c ├── carrefour_migrate.c ├── carrefour_rbtree.c ├── carrefour_tid_replication.c ├── carrefour_tids.c └── ibs ├── fake_ibs.c ├── ibs_init.c ├── ibs_main.c ├── include ├── fake_ibs.h ├── ibs_defs.h ├── ibs_init.h ├── ibs_main.h └── nmi_int.h └── nmi_int.c /.gitignore: -------------------------------------------------------------------------------- 1 | cscope.* 2 | tags 3 | -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Carrefour/carrefour-module/HEAD/COPYING -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Carrefour/carrefour-module/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Carrefour/carrefour-module/HEAD/README.md -------------------------------------------------------------------------------- /carrefour.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Carrefour/carrefour-module/HEAD/carrefour.pl -------------------------------------------------------------------------------- /create_hooks.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Carrefour/carrefour-module/HEAD/create_hooks.pl -------------------------------------------------------------------------------- /include/carrefour.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Carrefour/carrefour-module/HEAD/include/carrefour.h -------------------------------------------------------------------------------- /include/carrefour_machine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Carrefour/carrefour-module/HEAD/include/carrefour_machine.h -------------------------------------------------------------------------------- /include/carrefour_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Carrefour/carrefour-module/HEAD/include/carrefour_main.h -------------------------------------------------------------------------------- /include/carrefour_migrate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Carrefour/carrefour-module/HEAD/include/carrefour_migrate.h -------------------------------------------------------------------------------- /include/carrefour_rbtree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Carrefour/carrefour-module/HEAD/include/carrefour_rbtree.h -------------------------------------------------------------------------------- /include/carrefour_tid_replication.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Carrefour/carrefour-module/HEAD/include/carrefour_tid_replication.h -------------------------------------------------------------------------------- /include/carrefour_tids.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Carrefour/carrefour-module/HEAD/include/carrefour_tids.h -------------------------------------------------------------------------------- /include/ibs_struct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Carrefour/carrefour-module/HEAD/include/ibs_struct.h -------------------------------------------------------------------------------- /src/carrefour.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Carrefour/carrefour-module/HEAD/src/carrefour.c -------------------------------------------------------------------------------- /src/carrefour_machine.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Carrefour/carrefour-module/HEAD/src/carrefour_machine.c -------------------------------------------------------------------------------- /src/carrefour_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Carrefour/carrefour-module/HEAD/src/carrefour_main.c -------------------------------------------------------------------------------- /src/carrefour_migrate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Carrefour/carrefour-module/HEAD/src/carrefour_migrate.c -------------------------------------------------------------------------------- /src/carrefour_rbtree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Carrefour/carrefour-module/HEAD/src/carrefour_rbtree.c -------------------------------------------------------------------------------- /src/carrefour_tid_replication.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Carrefour/carrefour-module/HEAD/src/carrefour_tid_replication.c -------------------------------------------------------------------------------- /src/carrefour_tids.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Carrefour/carrefour-module/HEAD/src/carrefour_tids.c -------------------------------------------------------------------------------- /src/ibs/fake_ibs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Carrefour/carrefour-module/HEAD/src/ibs/fake_ibs.c -------------------------------------------------------------------------------- /src/ibs/ibs_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Carrefour/carrefour-module/HEAD/src/ibs/ibs_init.c -------------------------------------------------------------------------------- /src/ibs/ibs_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Carrefour/carrefour-module/HEAD/src/ibs/ibs_main.c -------------------------------------------------------------------------------- /src/ibs/include/fake_ibs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Carrefour/carrefour-module/HEAD/src/ibs/include/fake_ibs.h -------------------------------------------------------------------------------- /src/ibs/include/ibs_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Carrefour/carrefour-module/HEAD/src/ibs/include/ibs_defs.h -------------------------------------------------------------------------------- /src/ibs/include/ibs_init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Carrefour/carrefour-module/HEAD/src/ibs/include/ibs_init.h -------------------------------------------------------------------------------- /src/ibs/include/ibs_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Carrefour/carrefour-module/HEAD/src/ibs/include/ibs_main.h -------------------------------------------------------------------------------- /src/ibs/include/nmi_int.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Carrefour/carrefour-module/HEAD/src/ibs/include/nmi_int.h -------------------------------------------------------------------------------- /src/ibs/nmi_int.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Carrefour/carrefour-module/HEAD/src/ibs/nmi_int.c --------------------------------------------------------------------------------