1
0
mirror of https://github.com/Zygo/bees.git synced 2025-05-17 13:25:45 +02:00

process: make it build with clang

Get rid of unused template instantiation.

Drop the unused realtime signals from the ntoa table.  If in the future
we really need to solve clang's issue with them, we'll address it then.

Signed-off-by: Zygo Blaxell <bees@furryterror.org>
This commit is contained in:
Zygo Blaxell 2020-12-17 16:34:49 -05:00
parent 29b051b131
commit e34237886d

View File

@ -111,9 +111,6 @@ namespace crucible {
}
}
template<>
struct ResourceHandle<Process::id, Process>;
pid_t
gettid()
{
@ -207,17 +204,6 @@ namespace crucible {
NTOA_TABLE_ENTRY_ENUM(SIGUNUSED),
#endif
// realtime
NTOA_TABLE_ENTRY_ENUM(SIGRTMIN),
NTOA_TABLE_ENTRY_ENUM(SIGRTMIN+1U),
NTOA_TABLE_ENTRY_ENUM(SIGRTMIN+2U),
NTOA_TABLE_ENTRY_ENUM(SIGRTMIN+3U),
NTOA_TABLE_ENTRY_ENUM(SIGRTMIN+4U),
NTOA_TABLE_ENTRY_ENUM(SIGRTMIN+5U),
NTOA_TABLE_ENTRY_ENUM(SIGRTMIN+6U),
NTOA_TABLE_ENTRY_ENUM(SIGRTMIN+7U),
NTOA_TABLE_ENTRY_ENUM(SIGRTMAX),
NTOA_TABLE_ENTRY_END(),
};