2007-12-08 23:42:33 +01:00
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
//
|
2009-02-05 08:12:57 +01:00
|
|
|
/// \file hardware.h
|
2007-12-08 23:42:33 +01:00
|
|
|
/// \brief Detection of available hardware resources
|
|
|
|
//
|
2009-04-13 10:27:40 +02:00
|
|
|
// Author: Lasse Collin
|
2007-12-08 23:42:33 +01:00
|
|
|
//
|
2009-04-13 10:27:40 +02:00
|
|
|
// This file has been put into the public domain.
|
|
|
|
// You can do whatever you want with this file.
|
2007-12-08 23:42:33 +01:00
|
|
|
//
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
2008-11-19 19:46:52 +01:00
|
|
|
/// Initialize some hardware-specific variables, which are needed by other
|
|
|
|
/// hardware_* functions.
|
2007-12-08 23:42:33 +01:00
|
|
|
extern void hardware_init(void);
|
|
|
|
|
2008-11-19 19:46:52 +01:00
|
|
|
|
2009-02-13 23:45:29 +01:00
|
|
|
/// Set custom value for maximum number of coder threads.
|
|
|
|
extern void hardware_threadlimit_set(uint32_t threadlimit);
|
|
|
|
|
|
|
|
/// Get the maximum number of coder threads. Some additional helper threads
|
|
|
|
/// are allowed on top of this).
|
|
|
|
extern uint32_t hardware_threadlimit_get(void);
|
|
|
|
|
|
|
|
|
2010-08-07 19:45:18 +02:00
|
|
|
/// Set the memory usage limit. There are separate limits for compression
|
|
|
|
/// and decompression (the latter includes also --list), one or both can
|
|
|
|
/// be set with a single call to this function. Zero indicates resetting
|
|
|
|
/// the limit back to the defaults. The limit can also be set as a percentage
|
|
|
|
/// of installed RAM; the percentage must be in the range [1, 100].
|
|
|
|
extern void hardware_memlimit_set(uint64_t new_memlimit,
|
|
|
|
bool set_compress, bool set_decompress, bool is_percentage);
|
|
|
|
|
|
|
|
/// Get the current memory usage limit for compression or decompression.
|
|
|
|
extern uint64_t hardware_memlimit_get(enum operation_mode mode);
|
|
|
|
|
|
|
|
/// Display the amount of RAM and memory usage limits and exit.
|
|
|
|
extern void hardware_memlimit_show(void) lzma_attribute((noreturn));
|