- /etc/default/grubのGRUB_CMDLINE_LINUXにisolcpus=XXX,XXX...を追加 (使うぶんだけ除外)
- 以下コマンドで設定値反映
sudo update-grub
sudo shutdown -h now
/** | |
* @file websocket_frame_parse.c | |
* | |
* @brief Parses each parameter of a websocket frame stored in network byte order. | |
* @see RFC6455 (https://datatracker.ietf.org/doc/html/rfc6455) | |
*/ | |
#include <alloca.h> | |
#include <stdio.h> | |
#include <stdint.h> | |
#include <string.h> |
sudo update-grub
sudo shutdown -h now
Deep ResearchでWebTransport / WebSocketの速度向上について扱った論文一覧を取ってきて、箇条書きで纏めたもの
英語の要約は、Deep Researchで出力された英語を機械翻訳したもの
#include <curl/curl.h> | |
#include <stdbool.h> | |
#include <stdlib.h> | |
#include <string.h> | |
typedef char* PCHAR; | |
typedef void* PVOID; | |
typedef CURL* PCURL; | |
typedef struct curl_slist CurlList; | |
typedef struct curl_slist* PCurlList; |