Skip to content

Commit

Permalink
Merge #1177
Browse files Browse the repository at this point in the history
1177: Add CLK_TCK to SysconfVar r=asomers a=cjbassi

http://man7.org/linux/man-pages/man3/sysconf.3.html says that the
corresponding variable is obsolete, but I think that just means the
constant defined in limits.h is obsolete. Checking the value using
sysconf is still valid.

Co-authored-by: Caleb Bassi <calebjbassi@gmail.com>
  • Loading branch information
bors[bot] and cjbassi committed Jan 12, 2020
2 parents e317fad + 6e5e3ab commit 90f9301
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Expand Up @@ -5,6 +5,8 @@ This project adheres to [Semantic Versioning](http://semver.org/).

## [Unreleased] - ReleaseDate
### Added
- Add `CLK_TCK` to `SysconfVar`
(#[1177](https://github.com/nix-rust/nix/pull/1177))
### Changed
### Fixed
### Removed
Expand Down
3 changes: 2 additions & 1 deletion src/unistd.rs
Expand Up @@ -1994,7 +1994,8 @@ pub enum SysconfVar {
BC_STRING_MAX = libc::_SC_BC_STRING_MAX,
/// Maximum number of simultaneous processes per real user ID.
CHILD_MAX = libc::_SC_CHILD_MAX,
// _SC_CLK_TCK is obsolete
// The number of clock ticks per second.
CLK_TCK = libc::_SC_CLK_TCK,
/// Maximum number of weights that can be assigned to an entry of the
/// LC_COLLATE order keyword in the locale definition file
COLL_WEIGHTS_MAX = libc::_SC_COLL_WEIGHTS_MAX,
Expand Down

0 comments on commit 90f9301

Please sign in to comment.