├── .gitignore ├── GCC_ENV ├── OpenGL ├── Makefile ├── glad.c ├── glad.o ├── hello.cpp ├── learnopengl │ ├── shader.fs │ ├── shader.vs │ └── shader_s.h ├── shader │ ├── Makefile │ ├── glad.o │ ├── shader.fs │ ├── shader.vs │ ├── shader1 │ ├── shader1.cpp │ ├── shader2 │ ├── shader2.cpp │ ├── shader3 │ └── shader3.cpp ├── texture │ └── container.jpg ├── triangle │ ├── Makefile │ ├── glad.o │ ├── triangle.cpp │ ├── triangle2.cpp │ ├── triangle3.cpp │ ├── triangle4.cpp │ ├── triangle5.cpp │ └── triangle6.cpp └── version.c ├── README.md ├── centos_yumrepo ├── CentOS-Base.repo ├── CentOS-CR.repo ├── CentOS-Debuginfo.repo ├── CentOS-Media.repo ├── CentOS-Sources.repo ├── CentOS-Vault.repo ├── CentOS-fasttrack.repo ├── Centos-7.repo ├── epel-testing.repo ├── epel.repo └── nux-dextop.repo ├── coroutine ├── assemble_demo │ ├── Makefile │ ├── main.c │ ├── save_restore.S │ └── test_save_restore.c ├── qemu_demo │ ├── Makefile │ ├── coroutine.c │ ├── coroutine.h │ ├── main.c │ └── queue.h └── ucontext_demo │ ├── LICENSE │ ├── Makefile │ ├── README.md │ ├── coroutine.c │ ├── coroutine.h │ ├── main.c │ └── simple.c ├── cpuinfo ├── Makefile ├── cpuid.c ├── cpuinfo.S └── test_cpuinfo.c ├── ctc_device ├── guest │ ├── Makefile │ └── testdev-drv.c └── host │ ├── ctcdev.c │ └── ctcdev.patch ├── dbus ├── Makefile ├── demo1.c ├── demo1.conf ├── demo2_client.c ├── demo2_server.c ├── demo3.c ├── run_demo1.sh ├── run_demo2.sh └── run_demo3.sh ├── event_monitor ├── VERSION ├── gvm-conf.sh ├── gvm-event-monitor.c ├── gvm-event-monitor.h ├── gvm-event-monitor.service ├── include │ ├── cJSON.h │ ├── jsonrpc-c.h │ ├── jsonrpc-s.h │ └── misc.h ├── meson.build └── util │ ├── cJSON.c │ ├── jsonrpc-c.c │ ├── jsonrpc-s.c │ └── misc.c ├── eventfd ├── Makefile └── main.c ├── glib_event ├── Makefile ├── demo1.c ├── demo2.c ├── glib_unref_bugfix │ ├── 0001-glib-debugging-patch-for-g_source_iter_next-refcount.patch │ ├── README │ └── glib-unref-reproducer.py ├── poll_demo.c ├── qemu_main_loop.c ├── run_demo1.sh └── run_demo2.sh ├── go_demo ├── Makefile ├── empty_interface.go ├── md5.go └── regexp.go ├── hello ├── Makefile ├── hello.c └── hello_another.c ├── ivshmem ├── Makefile ├── guest │ ├── Makefile │ └── ivshmem-drv.c └── read_shared_memory.c ├── libtool ├── Makefile ├── compress.c ├── libzlibagent.c ├── main.c ├── ml_main.c └── zlib.c ├── network_scripts ├── downtime.sh ├── net_loss_rate_ip.sh └── plot_net_loos.py ├── oracle_rac ├── db_install.rsp ├── dbca.rsp ├── gridsetup.rsp ├── hy_c7_node3.xml └── hy_c7_node4.xml ├── powershell_virtio_scirpts ├── DriverInstaller.ps1 ├── VirtIODriverSigner.ps1 └── enable_debug.patch ├── qemu_bh ├── Makefile ├── aio.c ├── aio.h ├── async.c ├── async.h ├── atomic.h ├── event_notifier.c ├── event_notifier.h ├── futex.h ├── lockcnt.c ├── qemu_main_loop.c └── util.h ├── qemu_migrate_scripts ├── initrd-stress.img ├── migrate_from.sh ├── migrate_to.sh └── vm.sh ├── shared_memory ├── Makefile ├── protocol.h ├── receiver.c └── sender.c ├── sm4_crypt ├── Makefile ├── sm4_gcrypt.c └── sm4_nettle.c ├── vfio_work ├── Makefile └── demo.c └── x509_demo └── cert_setup_example.sh /.gitignore: -------------------------------------------------------------------------------- 1 | tags 2 | cscope.* 3 | -------------------------------------------------------------------------------- /GCC_ENV: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfriday/misc/HEAD/GCC_ENV -------------------------------------------------------------------------------- /OpenGL/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfriday/misc/HEAD/OpenGL/Makefile -------------------------------------------------------------------------------- /OpenGL/glad.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfriday/misc/HEAD/OpenGL/glad.c -------------------------------------------------------------------------------- /OpenGL/glad.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfriday/misc/HEAD/OpenGL/glad.o -------------------------------------------------------------------------------- /OpenGL/hello.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfriday/misc/HEAD/OpenGL/hello.cpp -------------------------------------------------------------------------------- /OpenGL/learnopengl/shader.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfriday/misc/HEAD/OpenGL/learnopengl/shader.fs -------------------------------------------------------------------------------- /OpenGL/learnopengl/shader.vs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfriday/misc/HEAD/OpenGL/learnopengl/shader.vs -------------------------------------------------------------------------------- /OpenGL/learnopengl/shader_s.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfriday/misc/HEAD/OpenGL/learnopengl/shader_s.h -------------------------------------------------------------------------------- /OpenGL/shader/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfriday/misc/HEAD/OpenGL/shader/Makefile -------------------------------------------------------------------------------- /OpenGL/shader/glad.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfriday/misc/HEAD/OpenGL/shader/glad.o -------------------------------------------------------------------------------- /OpenGL/shader/shader.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfriday/misc/HEAD/OpenGL/shader/shader.fs -------------------------------------------------------------------------------- /OpenGL/shader/shader.vs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfriday/misc/HEAD/OpenGL/shader/shader.vs -------------------------------------------------------------------------------- /OpenGL/shader/shader1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfriday/misc/HEAD/OpenGL/shader/shader1 -------------------------------------------------------------------------------- /OpenGL/shader/shader1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfriday/misc/HEAD/OpenGL/shader/shader1.cpp -------------------------------------------------------------------------------- /OpenGL/shader/shader2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfriday/misc/HEAD/OpenGL/shader/shader2 -------------------------------------------------------------------------------- /OpenGL/shader/shader2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfriday/misc/HEAD/OpenGL/shader/shader2.cpp -------------------------------------------------------------------------------- /OpenGL/shader/shader3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfriday/misc/HEAD/OpenGL/shader/shader3 -------------------------------------------------------------------------------- /OpenGL/shader/shader3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfriday/misc/HEAD/OpenGL/shader/shader3.cpp -------------------------------------------------------------------------------- /OpenGL/texture/container.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfriday/misc/HEAD/OpenGL/texture/container.jpg -------------------------------------------------------------------------------- /OpenGL/triangle/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfriday/misc/HEAD/OpenGL/triangle/Makefile -------------------------------------------------------------------------------- /OpenGL/triangle/glad.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfriday/misc/HEAD/OpenGL/triangle/glad.o -------------------------------------------------------------------------------- /OpenGL/triangle/triangle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfriday/misc/HEAD/OpenGL/triangle/triangle.cpp -------------------------------------------------------------------------------- /OpenGL/triangle/triangle2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfriday/misc/HEAD/OpenGL/triangle/triangle2.cpp -------------------------------------------------------------------------------- /OpenGL/triangle/triangle3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfriday/misc/HEAD/OpenGL/triangle/triangle3.cpp -------------------------------------------------------------------------------- /OpenGL/triangle/triangle4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfriday/misc/HEAD/OpenGL/triangle/triangle4.cpp -------------------------------------------------------------------------------- /OpenGL/triangle/triangle5.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfriday/misc/HEAD/OpenGL/triangle/triangle5.cpp -------------------------------------------------------------------------------- /OpenGL/triangle/triangle6.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfriday/misc/HEAD/OpenGL/triangle/triangle6.cpp -------------------------------------------------------------------------------- /OpenGL/version.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfriday/misc/HEAD/OpenGL/version.c -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfriday/misc/HEAD/README.md -------------------------------------------------------------------------------- /centos_yumrepo/CentOS-Base.repo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfriday/misc/HEAD/centos_yumrepo/CentOS-Base.repo -------------------------------------------------------------------------------- /centos_yumrepo/CentOS-CR.repo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfriday/misc/HEAD/centos_yumrepo/CentOS-CR.repo -------------------------------------------------------------------------------- /centos_yumrepo/CentOS-Debuginfo.repo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfriday/misc/HEAD/centos_yumrepo/CentOS-Debuginfo.repo -------------------------------------------------------------------------------- /centos_yumrepo/CentOS-Media.repo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfriday/misc/HEAD/centos_yumrepo/CentOS-Media.repo -------------------------------------------------------------------------------- /centos_yumrepo/CentOS-Sources.repo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfriday/misc/HEAD/centos_yumrepo/CentOS-Sources.repo -------------------------------------------------------------------------------- /centos_yumrepo/CentOS-Vault.repo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfriday/misc/HEAD/centos_yumrepo/CentOS-Vault.repo -------------------------------------------------------------------------------- /centos_yumrepo/CentOS-fasttrack.repo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfriday/misc/HEAD/centos_yumrepo/CentOS-fasttrack.repo -------------------------------------------------------------------------------- /centos_yumrepo/Centos-7.repo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfriday/misc/HEAD/centos_yumrepo/Centos-7.repo -------------------------------------------------------------------------------- /centos_yumrepo/epel-testing.repo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfriday/misc/HEAD/centos_yumrepo/epel-testing.repo -------------------------------------------------------------------------------- /centos_yumrepo/epel.repo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfriday/misc/HEAD/centos_yumrepo/epel.repo -------------------------------------------------------------------------------- /centos_yumrepo/nux-dextop.repo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfriday/misc/HEAD/centos_yumrepo/nux-dextop.repo -------------------------------------------------------------------------------- /coroutine/assemble_demo/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfriday/misc/HEAD/coroutine/assemble_demo/Makefile -------------------------------------------------------------------------------- /coroutine/assemble_demo/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfriday/misc/HEAD/coroutine/assemble_demo/main.c -------------------------------------------------------------------------------- /coroutine/assemble_demo/save_restore.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfriday/misc/HEAD/coroutine/assemble_demo/save_restore.S -------------------------------------------------------------------------------- /coroutine/assemble_demo/test_save_restore.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfriday/misc/HEAD/coroutine/assemble_demo/test_save_restore.c -------------------------------------------------------------------------------- /coroutine/qemu_demo/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfriday/misc/HEAD/coroutine/qemu_demo/Makefile -------------------------------------------------------------------------------- /coroutine/qemu_demo/coroutine.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfriday/misc/HEAD/coroutine/qemu_demo/coroutine.c -------------------------------------------------------------------------------- /coroutine/qemu_demo/coroutine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfriday/misc/HEAD/coroutine/qemu_demo/coroutine.h -------------------------------------------------------------------------------- /coroutine/qemu_demo/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfriday/misc/HEAD/coroutine/qemu_demo/main.c -------------------------------------------------------------------------------- /coroutine/qemu_demo/queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfriday/misc/HEAD/coroutine/qemu_demo/queue.h -------------------------------------------------------------------------------- /coroutine/ucontext_demo/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfriday/misc/HEAD/coroutine/ucontext_demo/LICENSE -------------------------------------------------------------------------------- /coroutine/ucontext_demo/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfriday/misc/HEAD/coroutine/ucontext_demo/Makefile -------------------------------------------------------------------------------- /coroutine/ucontext_demo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfriday/misc/HEAD/coroutine/ucontext_demo/README.md -------------------------------------------------------------------------------- /coroutine/ucontext_demo/coroutine.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfriday/misc/HEAD/coroutine/ucontext_demo/coroutine.c -------------------------------------------------------------------------------- /coroutine/ucontext_demo/coroutine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfriday/misc/HEAD/coroutine/ucontext_demo/coroutine.h -------------------------------------------------------------------------------- /coroutine/ucontext_demo/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfriday/misc/HEAD/coroutine/ucontext_demo/main.c -------------------------------------------------------------------------------- /coroutine/ucontext_demo/simple.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfriday/misc/HEAD/coroutine/ucontext_demo/simple.c -------------------------------------------------------------------------------- /cpuinfo/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfriday/misc/HEAD/cpuinfo/Makefile -------------------------------------------------------------------------------- /cpuinfo/cpuid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfriday/misc/HEAD/cpuinfo/cpuid.c -------------------------------------------------------------------------------- /cpuinfo/cpuinfo.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfriday/misc/HEAD/cpuinfo/cpuinfo.S -------------------------------------------------------------------------------- /cpuinfo/test_cpuinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfriday/misc/HEAD/cpuinfo/test_cpuinfo.c -------------------------------------------------------------------------------- /ctc_device/guest/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfriday/misc/HEAD/ctc_device/guest/Makefile -------------------------------------------------------------------------------- /ctc_device/guest/testdev-drv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfriday/misc/HEAD/ctc_device/guest/testdev-drv.c -------------------------------------------------------------------------------- /ctc_device/host/ctcdev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfriday/misc/HEAD/ctc_device/host/ctcdev.c -------------------------------------------------------------------------------- /ctc_device/host/ctcdev.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfriday/misc/HEAD/ctc_device/host/ctcdev.patch -------------------------------------------------------------------------------- /dbus/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfriday/misc/HEAD/dbus/Makefile -------------------------------------------------------------------------------- /dbus/demo1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfriday/misc/HEAD/dbus/demo1.c -------------------------------------------------------------------------------- /dbus/demo1.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfriday/misc/HEAD/dbus/demo1.conf -------------------------------------------------------------------------------- /dbus/demo2_client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfriday/misc/HEAD/dbus/demo2_client.c -------------------------------------------------------------------------------- /dbus/demo2_server.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfriday/misc/HEAD/dbus/demo2_server.c -------------------------------------------------------------------------------- /dbus/demo3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfriday/misc/HEAD/dbus/demo3.c -------------------------------------------------------------------------------- /dbus/run_demo1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfriday/misc/HEAD/dbus/run_demo1.sh -------------------------------------------------------------------------------- /dbus/run_demo2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfriday/misc/HEAD/dbus/run_demo2.sh -------------------------------------------------------------------------------- /dbus/run_demo3.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfriday/misc/HEAD/dbus/run_demo3.sh -------------------------------------------------------------------------------- /event_monitor/VERSION: -------------------------------------------------------------------------------- 1 | 1.0.0 2 | -------------------------------------------------------------------------------- /event_monitor/gvm-conf.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfriday/misc/HEAD/event_monitor/gvm-conf.sh -------------------------------------------------------------------------------- /event_monitor/gvm-event-monitor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfriday/misc/HEAD/event_monitor/gvm-event-monitor.c -------------------------------------------------------------------------------- /event_monitor/gvm-event-monitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfriday/misc/HEAD/event_monitor/gvm-event-monitor.h -------------------------------------------------------------------------------- /event_monitor/gvm-event-monitor.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfriday/misc/HEAD/event_monitor/gvm-event-monitor.service -------------------------------------------------------------------------------- /event_monitor/include/cJSON.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfriday/misc/HEAD/event_monitor/include/cJSON.h -------------------------------------------------------------------------------- /event_monitor/include/jsonrpc-c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfriday/misc/HEAD/event_monitor/include/jsonrpc-c.h -------------------------------------------------------------------------------- /event_monitor/include/jsonrpc-s.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfriday/misc/HEAD/event_monitor/include/jsonrpc-s.h -------------------------------------------------------------------------------- /event_monitor/include/misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfriday/misc/HEAD/event_monitor/include/misc.h -------------------------------------------------------------------------------- /event_monitor/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfriday/misc/HEAD/event_monitor/meson.build -------------------------------------------------------------------------------- /event_monitor/util/cJSON.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfriday/misc/HEAD/event_monitor/util/cJSON.c -------------------------------------------------------------------------------- /event_monitor/util/jsonrpc-c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfriday/misc/HEAD/event_monitor/util/jsonrpc-c.c -------------------------------------------------------------------------------- /event_monitor/util/jsonrpc-s.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfriday/misc/HEAD/event_monitor/util/jsonrpc-s.c -------------------------------------------------------------------------------- /event_monitor/util/misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfriday/misc/HEAD/event_monitor/util/misc.c -------------------------------------------------------------------------------- /eventfd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfriday/misc/HEAD/eventfd/Makefile -------------------------------------------------------------------------------- /eventfd/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfriday/misc/HEAD/eventfd/main.c -------------------------------------------------------------------------------- /glib_event/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfriday/misc/HEAD/glib_event/Makefile -------------------------------------------------------------------------------- /glib_event/demo1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfriday/misc/HEAD/glib_event/demo1.c -------------------------------------------------------------------------------- /glib_event/demo2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfriday/misc/HEAD/glib_event/demo2.c -------------------------------------------------------------------------------- /glib_event/glib_unref_bugfix/0001-glib-debugging-patch-for-g_source_iter_next-refcount.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfriday/misc/HEAD/glib_event/glib_unref_bugfix/0001-glib-debugging-patch-for-g_source_iter_next-refcount.patch -------------------------------------------------------------------------------- /glib_event/glib_unref_bugfix/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfriday/misc/HEAD/glib_event/glib_unref_bugfix/README -------------------------------------------------------------------------------- /glib_event/glib_unref_bugfix/glib-unref-reproducer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfriday/misc/HEAD/glib_event/glib_unref_bugfix/glib-unref-reproducer.py -------------------------------------------------------------------------------- /glib_event/poll_demo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfriday/misc/HEAD/glib_event/poll_demo.c -------------------------------------------------------------------------------- /glib_event/qemu_main_loop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfriday/misc/HEAD/glib_event/qemu_main_loop.c -------------------------------------------------------------------------------- /glib_event/run_demo1.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | # run directly 4 | ./demo1 5 | -------------------------------------------------------------------------------- /glib_event/run_demo2.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | # run directly 4 | ./demo2 5 | -------------------------------------------------------------------------------- /go_demo/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfriday/misc/HEAD/go_demo/Makefile -------------------------------------------------------------------------------- /go_demo/empty_interface.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfriday/misc/HEAD/go_demo/empty_interface.go -------------------------------------------------------------------------------- /go_demo/md5.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfriday/misc/HEAD/go_demo/md5.go -------------------------------------------------------------------------------- /go_demo/regexp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfriday/misc/HEAD/go_demo/regexp.go -------------------------------------------------------------------------------- /hello/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfriday/misc/HEAD/hello/Makefile -------------------------------------------------------------------------------- /hello/hello.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfriday/misc/HEAD/hello/hello.c -------------------------------------------------------------------------------- /hello/hello_another.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfriday/misc/HEAD/hello/hello_another.c -------------------------------------------------------------------------------- /ivshmem/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfriday/misc/HEAD/ivshmem/Makefile -------------------------------------------------------------------------------- /ivshmem/guest/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfriday/misc/HEAD/ivshmem/guest/Makefile -------------------------------------------------------------------------------- /ivshmem/guest/ivshmem-drv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfriday/misc/HEAD/ivshmem/guest/ivshmem-drv.c -------------------------------------------------------------------------------- /ivshmem/read_shared_memory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfriday/misc/HEAD/ivshmem/read_shared_memory.c -------------------------------------------------------------------------------- /libtool/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfriday/misc/HEAD/libtool/Makefile -------------------------------------------------------------------------------- /libtool/compress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfriday/misc/HEAD/libtool/compress.c -------------------------------------------------------------------------------- /libtool/libzlibagent.c: -------------------------------------------------------------------------------- 1 | void zlib(void) {} 2 | -------------------------------------------------------------------------------- /libtool/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfriday/misc/HEAD/libtool/main.c -------------------------------------------------------------------------------- /libtool/ml_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfriday/misc/HEAD/libtool/ml_main.c -------------------------------------------------------------------------------- /libtool/zlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfriday/misc/HEAD/libtool/zlib.c -------------------------------------------------------------------------------- /network_scripts/downtime.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfriday/misc/HEAD/network_scripts/downtime.sh -------------------------------------------------------------------------------- /network_scripts/net_loss_rate_ip.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfriday/misc/HEAD/network_scripts/net_loss_rate_ip.sh -------------------------------------------------------------------------------- /network_scripts/plot_net_loos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfriday/misc/HEAD/network_scripts/plot_net_loos.py -------------------------------------------------------------------------------- /oracle_rac/db_install.rsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfriday/misc/HEAD/oracle_rac/db_install.rsp -------------------------------------------------------------------------------- /oracle_rac/dbca.rsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfriday/misc/HEAD/oracle_rac/dbca.rsp -------------------------------------------------------------------------------- /oracle_rac/gridsetup.rsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfriday/misc/HEAD/oracle_rac/gridsetup.rsp -------------------------------------------------------------------------------- /oracle_rac/hy_c7_node3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfriday/misc/HEAD/oracle_rac/hy_c7_node3.xml -------------------------------------------------------------------------------- /oracle_rac/hy_c7_node4.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfriday/misc/HEAD/oracle_rac/hy_c7_node4.xml -------------------------------------------------------------------------------- /powershell_virtio_scirpts/DriverInstaller.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfriday/misc/HEAD/powershell_virtio_scirpts/DriverInstaller.ps1 -------------------------------------------------------------------------------- /powershell_virtio_scirpts/VirtIODriverSigner.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfriday/misc/HEAD/powershell_virtio_scirpts/VirtIODriverSigner.ps1 -------------------------------------------------------------------------------- /powershell_virtio_scirpts/enable_debug.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfriday/misc/HEAD/powershell_virtio_scirpts/enable_debug.patch -------------------------------------------------------------------------------- /qemu_bh/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfriday/misc/HEAD/qemu_bh/Makefile -------------------------------------------------------------------------------- /qemu_bh/aio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfriday/misc/HEAD/qemu_bh/aio.c -------------------------------------------------------------------------------- /qemu_bh/aio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfriday/misc/HEAD/qemu_bh/aio.h -------------------------------------------------------------------------------- /qemu_bh/async.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfriday/misc/HEAD/qemu_bh/async.c -------------------------------------------------------------------------------- /qemu_bh/async.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfriday/misc/HEAD/qemu_bh/async.h -------------------------------------------------------------------------------- /qemu_bh/atomic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfriday/misc/HEAD/qemu_bh/atomic.h -------------------------------------------------------------------------------- /qemu_bh/event_notifier.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfriday/misc/HEAD/qemu_bh/event_notifier.c -------------------------------------------------------------------------------- /qemu_bh/event_notifier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfriday/misc/HEAD/qemu_bh/event_notifier.h -------------------------------------------------------------------------------- /qemu_bh/futex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfriday/misc/HEAD/qemu_bh/futex.h -------------------------------------------------------------------------------- /qemu_bh/lockcnt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfriday/misc/HEAD/qemu_bh/lockcnt.c -------------------------------------------------------------------------------- /qemu_bh/qemu_main_loop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfriday/misc/HEAD/qemu_bh/qemu_main_loop.c -------------------------------------------------------------------------------- /qemu_bh/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfriday/misc/HEAD/qemu_bh/util.h -------------------------------------------------------------------------------- /qemu_migrate_scripts/initrd-stress.img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfriday/misc/HEAD/qemu_migrate_scripts/initrd-stress.img -------------------------------------------------------------------------------- /qemu_migrate_scripts/migrate_from.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfriday/misc/HEAD/qemu_migrate_scripts/migrate_from.sh -------------------------------------------------------------------------------- /qemu_migrate_scripts/migrate_to.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfriday/misc/HEAD/qemu_migrate_scripts/migrate_to.sh -------------------------------------------------------------------------------- /qemu_migrate_scripts/vm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfriday/misc/HEAD/qemu_migrate_scripts/vm.sh -------------------------------------------------------------------------------- /shared_memory/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfriday/misc/HEAD/shared_memory/Makefile -------------------------------------------------------------------------------- /shared_memory/protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfriday/misc/HEAD/shared_memory/protocol.h -------------------------------------------------------------------------------- /shared_memory/receiver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfriday/misc/HEAD/shared_memory/receiver.c -------------------------------------------------------------------------------- /shared_memory/sender.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfriday/misc/HEAD/shared_memory/sender.c -------------------------------------------------------------------------------- /sm4_crypt/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfriday/misc/HEAD/sm4_crypt/Makefile -------------------------------------------------------------------------------- /sm4_crypt/sm4_gcrypt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfriday/misc/HEAD/sm4_crypt/sm4_gcrypt.c -------------------------------------------------------------------------------- /sm4_crypt/sm4_nettle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfriday/misc/HEAD/sm4_crypt/sm4_nettle.c -------------------------------------------------------------------------------- /vfio_work/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfriday/misc/HEAD/vfio_work/Makefile -------------------------------------------------------------------------------- /vfio_work/demo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfriday/misc/HEAD/vfio_work/demo.c -------------------------------------------------------------------------------- /x509_demo/cert_setup_example.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newfriday/misc/HEAD/x509_demo/cert_setup_example.sh --------------------------------------------------------------------------------