This commit is contained in:
huoji
2023-05-07 16:29:16 +08:00
commit 9c4c45ef38
49 changed files with 4928 additions and 0 deletions

26
.vscode/c_cpp_properties.json vendored Normal file
View File

@@ -0,0 +1,26 @@
{
"configurations": [
{
"name": "Linux",
"includePath": [
"${workspaceFolder}/**",
"/usr/include/x86_64-linux-gnu/**",
"/usr/src/linux-hwe-5.19-headers-5.19.0-32/arch/x86/include/**",
"/usr/src/linux-hwe-5.19-headers-5.19.0-32/include/**",
"/usr/src/linux-headers-5.19.0-41-generic/arch/x86/include/generated/**",
"/usr/src/linux-headers-5.19.0-41-generic/arch/x86/include",
"/usr/src/linux-headers-5.19.0-41-generic/arch/x86/include/generated",
"/usr/src/linux-headers-5.19.0-41-generic/include"
],
"defines": [
"__KERNEL__",
"MODULE"
],
"compilerPath": "/usr/bin/g++-11",
"cStandard": "c23",
"cppStandard": "c++11",
"intelliSenseMode": "linux-gcc-x64"
}
],
"version": 4
}

115
.vscode/settings.json vendored Normal file
View File

@@ -0,0 +1,115 @@
{
"files.associations": {
"*.es": "javascript",
"*.py": "python",
"*.scar": "lua",
"*.ai": "lua",
"algorithm": "cpp",
"array": "cpp",
"atomic": "cpp",
"bit": "cpp",
"cctype": "cpp",
"charconv": "cpp",
"chrono": "cpp",
"clocale": "cpp",
"cmath": "cpp",
"compare": "cpp",
"concepts": "cpp",
"cstdarg": "cpp",
"cstddef": "cpp",
"cstdint": "cpp",
"cstdio": "cpp",
"cstdlib": "cpp",
"cstring": "cpp",
"ctime": "cpp",
"cwchar": "cpp",
"exception": "cpp",
"format": "cpp",
"forward_list": "cpp",
"initializer_list": "cpp",
"iomanip": "cpp",
"ios": "cpp",
"iosfwd": "cpp",
"istream": "cpp",
"iterator": "cpp",
"limits": "cpp",
"list": "cpp",
"locale": "cpp",
"map": "cpp",
"memory": "cpp",
"mutex": "cpp",
"new": "cpp",
"optional": "cpp",
"ostream": "cpp",
"ratio": "cpp",
"sstream": "cpp",
"stdexcept": "cpp",
"stop_token": "cpp",
"streambuf": "cpp",
"string": "cpp",
"system_error": "cpp",
"thread": "cpp",
"tuple": "cpp",
"type_traits": "cpp",
"typeinfo": "cpp",
"unordered_map": "cpp",
"utility": "cpp",
"vector": "cpp",
"xfacet": "cpp",
"xhash": "cpp",
"xiosbase": "cpp",
"xlocale": "cpp",
"xlocbuf": "cpp",
"xlocinfo": "cpp",
"xlocmes": "cpp",
"xlocmon": "cpp",
"xlocnum": "cpp",
"xloctime": "cpp",
"xmemory": "cpp",
"xstddef": "cpp",
"xstring": "cpp",
"xtr1common": "cpp",
"xtree": "cpp",
"xutility": "cpp",
"condition_variable": "cpp",
"fstream": "cpp",
"shared_mutex": "cpp",
"deque": "cpp",
"functional": "cpp",
"iostream": "cpp",
"set": "cpp",
"stack": "cpp",
"*.rmd": "markdown",
"nvdef.h": "c",
"*.cpp": "cpp",
"*.dec": "lua",
"nvsys.h": "c",
"*.rh": "cpp",
"random": "cpp",
"fs.h": "c",
"stddef.h": "c",
"module.h": "c",
"uaccess.h": "c",
"head.h": "c",
"tcp.h": "c",
"socket.h": "c",
"in.h": "c",
"inet.h": "c",
"time.h": "c",
"fcntl.h": "c",
"unistd.h": "c",
"errno.h": "c",
"types.h": "c",
"jiffies.h": "c",
"init.h": "c",
"cdev.h": "c",
"spinlock.h": "c",
"*.tcc": "cpp",
"cwctype": "cpp",
"memory_resource": "cpp",
"numeric": "cpp",
"string_view": "cpp",
"numbers": "cpp"
},
"C_Cpp.errorSquiggles": "enabled"
}