Home
last modified time | relevance | path

Searched refs:siginfo_type (Results 1 – 2 of 2) sorted by relevance

/freebsd/contrib/llvm-project/lldb/source/Plugins/Platform/FreeBSD/
H A DPlatformFreeBSD.cpp218 CompilerType siginfo_type = ast->CreateRecordType( in GetSiginfoType() local
221 ast->StartTagDeclarationDefinition(siginfo_type); in GetSiginfoType()
222 ast->AddFieldToRecordType(siginfo_type, "si_signo", int_type, in GetSiginfoType()
224 ast->AddFieldToRecordType(siginfo_type, "si_errno", int_type, in GetSiginfoType()
226 ast->AddFieldToRecordType(siginfo_type, "si_code", int_type, in GetSiginfoType()
228 ast->AddFieldToRecordType(siginfo_type, "si_pid", pid_type, in GetSiginfoType()
230 ast->AddFieldToRecordType(siginfo_type, "si_uid", uid_type, in GetSiginfoType()
232 ast->AddFieldToRecordType(siginfo_type, "si_status", int_type, in GetSiginfoType()
234 ast->AddFieldToRecordType(siginfo_type, "si_addr", voidp_type, in GetSiginfoType()
282 ast->CompleteTagDeclarationDefinition(siginfo_type); in GetSiginfoType()
[all …]
/freebsd/contrib/llvm-project/lldb/source/Plugins/Platform/NetBSD/
H A DPlatformNetBSD.cpp250 CompilerType siginfo_type = ast->CreateRecordType( in GetSiginfoType() local
253 ast->StartTagDeclarationDefinition(siginfo_type); in GetSiginfoType()
345 ast->AddFieldToRecordType(siginfo_type, "_info", ksiginfo_type, in GetSiginfoType()
348 ast->CompleteTagDeclarationDefinition(siginfo_type); in GetSiginfoType()
349 return siginfo_type; in GetSiginfoType()