⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 syn.h

📁 Ksplice is practical technology for updating the Linux kernel without rebooting. It enables you to a
💻 H
字号:
/* ----------------------------------------------------------------------------- * syn.h * * Copyright (c) 2006, Vivek Mohan <vivek@sig9.com> * All rights reserved. See LICENSE * ----------------------------------------------------------------------------- */#ifndef UD_SYN_H#define UD_SYN_H#include "types.h"#ifndef __UD_STANDALONE__# include <stdarg.h>#endif /* __UD_STANDALONE__ */extern const char* ud_reg_tab[];static void mkasm(struct ud* u, const char* fmt, ...){  va_list ap;  va_start(ap, fmt);  u->insn_fill += vsprintf((char*) u->insn_buffer + u->insn_fill, fmt, ap);  va_end(ap);}#endif

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -