[NFC] Rename some PALs to make the naming more consistent.

This commit is contained in:
David Chisnall
2019-08-01 11:43:40 +01:00
parent 2b44b6b5ea
commit 896cc9cf6f
4 changed files with 5 additions and 5 deletions

View File

@@ -10,7 +10,7 @@ namespace snmalloc
// If simultating OE, then we need the underlying platform
#if !defined(OPEN_ENCLAVE) || defined(OPEN_ENCLAVE_SIMULATION)
# include "pal_apple.h"
# include "pal_free_bsd_kernel.h"
# include "pal_freebsd_kernel.h"
# include "pal_freebsd.h"
# include "pal_linux.h"
# include "pal_netbsd.h"
@@ -33,11 +33,11 @@ namespace snmalloc
# elif defined(FreeBSD_KERNEL)
PALFreeBSDKernel;
# elif defined(__FreeBSD__)
PALFBSD;
PALFreeBSD;
# elif defined(__NetBSD__)
PALNetBSD;
# elif defined(__OpenBSD__)
PALOBSD;
PALOpenBSD;
# else
# error Unsupported platform
# endif