Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
ここにコードがあります。それぞれが何を意味するのかわかりません。たとえば、REG_RIP、「RIP」とは何ですか
//ucontext.h enum { //... REG_RIP, //... }
ここに完全なコードがあります
レジスターの名前です。REG_RIP は「RIP の登録」を意味し、RIP は命令ポインタです。その列挙値は、x86の命令ポインター(別名プログラムカウンター)レジスターの「名前」です。