mirror of
https://github.com/privatevoid-net/nix-super.git
synced 2025-02-07 18:57:19 +02:00
8433027e35
At this point many features are stripped out, but this works: - Can run libnix{util,store,expr} unit tests - Can run some Nix commands Co-Authored-By volth <volth@volth.com> Co-Authored-By Brian McKenna <brian@brianmckenna.org>
40 lines
766 B
C++
40 lines
766 B
C++
#pragma once
|
|
///@file
|
|
|
|
#include <optional>
|
|
|
|
#ifndef _WIN32
|
|
# include <sys/resource.h>
|
|
#endif
|
|
|
|
#include "types.hh"
|
|
|
|
namespace nix {
|
|
|
|
/**
|
|
* If cgroups are active, attempt to calculate the number of CPUs available.
|
|
* If cgroups are unavailable or if cpu.max is set to "max", return 0.
|
|
*/
|
|
unsigned int getMaxCPU();
|
|
|
|
#ifndef _WIN32 // TODO implement on Windows, if needed.
|
|
/**
|
|
* Change the stack size.
|
|
*/
|
|
void setStackSize(rlim_t stackSize);
|
|
#endif
|
|
|
|
/**
|
|
* Restore the original inherited Unix process context (such as signal
|
|
* masks, stack size).
|
|
|
|
* See unix::startSignalHandlerThread(), unix::saveSignalMask().
|
|
*/
|
|
void restoreProcessContext(bool restoreMounts = true);
|
|
|
|
/**
|
|
* @return the path of the current executable.
|
|
*/
|
|
std::optional<Path> getSelfExe();
|
|
|
|
}
|