Deleted Added
full compact
hardware.h (207842) hardware.h (213700)
1///////////////////////////////////////////////////////////////////////////////
2//
3/// \file hardware.h
4/// \brief Detection of available hardware resources
5//
6// Author: Lasse Collin
7//
8// This file has been put into the public domain.

--- 9 unchanged lines hidden (view full) ---

18/// Set custom value for maximum number of coder threads.
19extern void hardware_threadlimit_set(uint32_t threadlimit);
20
21/// Get the maximum number of coder threads. Some additional helper threads
22/// are allowed on top of this).
23extern uint32_t hardware_threadlimit_get(void);
24
25
1///////////////////////////////////////////////////////////////////////////////
2//
3/// \file hardware.h
4/// \brief Detection of available hardware resources
5//
6// Author: Lasse Collin
7//
8// This file has been put into the public domain.

--- 9 unchanged lines hidden (view full) ---

18/// Set custom value for maximum number of coder threads.
19extern void hardware_threadlimit_set(uint32_t threadlimit);
20
21/// Get the maximum number of coder threads. Some additional helper threads
22/// are allowed on top of this).
23extern uint32_t hardware_threadlimit_get(void);
24
25
26/// Set custom memory usage limit. This is used for both encoding and
27/// decoding. Zero indicates resetting the limit back to defaults.
28extern void hardware_memlimit_set(uint64_t memlimit);
26/// Set the memory usage limit. There are separate limits for compression
27/// and decompression (the latter includes also --list), one or both can
28/// be set with a single call to this function. Zero indicates resetting
29/// the limit back to the defaults. The limit can also be set as a percentage
30/// of installed RAM; the percentage must be in the range [1, 100].
31extern void hardware_memlimit_set(uint64_t new_memlimit,
32 bool set_compress, bool set_decompress, bool is_percentage);
29
33
30/// Set custom memory usage limit as a percentage of installed RAM.
31/// The percentage must be in the range [1, 100].
32extern void hardware_memlimit_set_percentage(uint32_t percentage);
34/// Get the current memory usage limit for compression or decompression.
35extern uint64_t hardware_memlimit_get(enum operation_mode mode);
33
36
34/// Get the current memory usage limit.
35extern uint64_t hardware_memlimit_get(void);
37/// Display the amount of RAM and memory usage limits and exit.
38extern void hardware_memlimit_show(void) lzma_attribute((noreturn));