feat: Add UPPER_FDTBL_TAG

This commit is contained in:
Ibuki Omatsu
2025-07-27 13:10:36 +00:00
committed by Jeremy Soller
parent 1cfe90df24
commit a9880ccf50
2 changed files with 4 additions and 1 deletions
+1 -1
View File
@@ -1,6 +1,6 @@
[package]
name = "redox_syscall"
version = "0.5.16"
version = "0.5.17"
description = "A Rust library to access raw Redox system calls"
license = "MIT"
authors = ["Jeremy Soller <jackpot51@gmail.com>"]
+3
View File
@@ -401,3 +401,6 @@ bitflags! {
const FD_UPPER = 1 << 14;
}
}
/// The tag for the fd number in the upper file descriptor table.
pub const UPPER_FDTBL_TAG: usize = 1 << (usize::BITS - 2);