![]() System : Linux absol.cf 5.4.0-198-generic #218-Ubuntu SMP Fri Sep 27 20:18:53 UTC 2024 x86_64 User : www-data ( 33) PHP Version : 7.4.33 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare, Directory : /proc/thread-self/root/usr/share/emscripten/system/lib/libcxx/ |
Upload File : |
//===-------------------------- random.cpp --------------------------------===// // // The LLVM Compiler Infrastructure // // This file is dual licensed under the MIT and the University of Illinois Open // Source Licenses. See LICENSE.TXT for details. // //===----------------------------------------------------------------------===// #if defined(_WIN32) // Must be defined before including stdlib.h to enable rand_s(). #define _CRT_RAND_S #include <stdio.h> #endif #include "random" #include "system_error" #ifdef __sun__ #define rename solaris_headers_are_broken #endif #if !defined(_WIN32) #include <fcntl.h> #include <unistd.h> #endif // defined(_WIN32) #include <errno.h> _LIBCPP_BEGIN_NAMESPACE_STD #if defined(_WIN32) random_device::random_device(const string&) { } random_device::~random_device() { } unsigned random_device::operator()() { unsigned r; errno_t err = rand_s(&r); if (err) __throw_system_error(err, "random_device rand_s failed."); return r; } #else random_device::random_device(const string& __token) : __f_(open(__token.c_str(), O_RDONLY)) { if (__f_ <= 0) __throw_system_error(errno, ("random_device failed to open " + __token).c_str()); } random_device::~random_device() { close(__f_); } unsigned random_device::operator()() { unsigned r; read(__f_, &r, sizeof(r)); return r; } #endif // defined(_WIN32) double random_device::entropy() const _NOEXCEPT { return 0; } _LIBCPP_END_NAMESPACE_STD