| Server IP : 82.208.35.60 / Your IP : 216.73.216.168 Web Server : Apache/2.4.55 (FreeBSD) OpenSSL/1.1.1q-freebsd PHP/7.3.31 System : FreeBSD server7.d2m.cz 12.4-RELEASE-p9 FreeBSD 12.4-RELEASE-p9 GENERIC amd64 User : studiokobylisy_cz ( 1008) PHP Version : 7.3.31 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /usr/ports/lang/hermes/files/ |
Upload File : |
--- lib/Support/OSCompatPosix.cpp.orig 2022-08-16 18:18:07 UTC
+++ lib/Support/OSCompatPosix.cpp
@@ -25,6 +25,11 @@
#endif
#endif // __linux__
+#if defined(__FreeBSD__)
+#include <pthread.h>
+#include <pthread_np.h>
+#endif
+
#include <sys/types.h>
#include <unistd.h>
@@ -221,7 +226,7 @@ void vm_free_aligned(void *p, size_t sz) {
static constexpr int kVMReserveProt = PROT_NONE;
static constexpr int kVMReserveFlags =
- MAP_PRIVATE | MAP_ANONYMOUS | MAP_NORESERVE;
+ MAP_PRIVATE | MAP_ANONYMOUS;
llvh::ErrorOr<void *>
vm_reserve_aligned(size_t sz, size_t alignment, void *hint) {
@@ -269,7 +274,7 @@ void vm_unused(void *p, size_t sz) {
/// the process's physical footprint.
#define MADV_UNUSED MADV_FREE
-#elif defined(__linux__)
+#elif defined(__linux__) || defined(__FreeBSD__)
/// On linux, telling the OS that we \p MADV_DONTNEED some pages will cause it
/// to immediately deduct their size from the process's resident set.
@@ -599,6 +604,12 @@ uint64_t thread_id() {
return syscall(__NR_gettid);
}
+#elif defined(__FreeBSD__)
+
+uint64_t thread_id() {
+ return reinterpret_cast<uint64_t>(pthread_self());
+}
+
#else
#error "Thread ID not supported on this platform"
#endif
@@ -640,7 +651,7 @@ std::chrono::microseconds thread_cpu_time() {
return microseconds(total);
}
-#elif defined(__linux__) // !(__APPLE__ && __MACH__)
+#elif defined(__linux__) || defined(__FreeBSD__) // !(__APPLE__ && __MACH__)
std::chrono::microseconds thread_cpu_time() {
using namespace std::chrono;
@@ -677,7 +688,7 @@ bool thread_page_fault_count(int64_t *outMinorFaults,
return kr == KERN_SUCCESS;
}
-#elif defined(__linux__) // !(__APPLE__ && __MACH__)
+#elif defined(__linux__) || defined(__FreeBSD__) // !(__APPLE__ && __MACH__)
bool thread_page_fault_count(int64_t *outMinorFaults, int64_t *outMajorFaults) {
struct rusage stats = {};