摘要:
# Initial process that execs /init. # This code runs in user space. #include "syscall.h" # exec(init, argv) .globl start start: la a0, init la a1, arg 阅读全文
摘要:
#include <iostream> #include <iomanip> #include <type_traits> class A {}; enum E : int {}; template <class T> T f(T i) { static_assert(std::is_integra 阅读全文
摘要:
这里用一个lambda来作为shared ptr的删除器,lambda没有做任何操作,保证这份数据的内存管理不受这个sharedptr影响。 编译器报错:static assertion failed due to requirement ***deleter expression is well- 阅读全文
摘要:
/****************************************************************************** Welcome to GDB Online. GDB online is an online compiler and debugger t 阅读全文