@@ -23,19 +23,18 @@ This project adheres to [Semantic Versioning](http://semver.org/).
23
23
([ #614 ] ( https://github.com/nix-rust/nix/pull/614 ) )
24
24
25
25
### Changed
26
- - Changed ioctl! write to take argument by value instead as pointer.
27
- If you need a pointer as argument, use ioctl! write buf.
26
+ - Changed ` ioctl!( write ...) ` to take argument by value instead as pointer.
27
+ If you need a pointer as argument, use ` ioctl!( write buf ...) ` .
28
28
([ #626 ] ( https://github.com/nix-rust/nix/pull/626 ) )
29
29
- Marked ` sys::mman::{ mmap, munmap, madvise, munlock, msync } ` as unsafe.
30
30
([ #559 ] ( https://github.com/nix-rust/nix/pull/559 ) )
31
- - Minimum supported Rust version is now 1.13
31
+ - Minimum supported Rust version is now 1.13.
32
32
- Removed ` revents ` argument from ` PollFd::new() ` as it's an output argument and
33
33
will be overwritten regardless of value.
34
34
([ #542 ] ( https://github.com/nix-rust/nix/pull/542 ) )
35
35
- Changed type signature of ` sys::select::FdSet::contains ` to make ` self `
36
36
immutable ([ #564 ] ( https://github.com/nix-rust/nix/pull/564 ) )
37
- - Changed type of ` sched::sched_setaffinity ` 's ` pid ` argument to ` pid_t `
38
- - Introduced wrapper types for gid_t, pid_t, and uid_t as Gid, Pid, and Uid
37
+ - Introduced wrapper types for ` gid_t ` , ` pid_t ` , and ` uid_t ` as ` Gid ` , ` Pid ` , and ` Uid `
39
38
respectively. Various functions have been changed to use these new types as
40
39
arguments. ([ #629 ] ( https://github.com/nix-rust/nix/pull/629 ) )
41
40
- Promoted all Android targets to Tier 2 support
@@ -44,7 +43,7 @@ This project adheres to [Semantic Versioning](http://semver.org/).
44
43
([ #561 ] ( https://github.com/nix-rust/nix/pull/561 ) )
45
44
46
45
### Removed
47
- - Removed io::Error from nix::Error and conversion from nix::Error to Errno
46
+ - Removed ` io::Error ` from ` nix::Error ` and the conversion from ` nix::Error ` to ` Errno `
48
47
([ #614 ] ( https://github.com/nix-rust/nix/pull/614 ) )
49
48
50
49
### Fixed
@@ -75,7 +74,7 @@ This project adheres to [Semantic Versioning](http://semver.org/).
75
74
- Added ` ::nix::sys::termios::BaudRate ` enum to provide portable baudrate
76
75
values. ([ #518 ] ( https://github.com/nix-rust/nix/pull/518 ) )
77
76
- Added a new ` WaitStatus::PtraceEvent ` to support ptrace events on Linux
78
- and Android ([ ( [ #438 ] ( https://github.com/nix-rust/nix/pull/438 ) )
77
+ and Android ([ #438 ] ( https://github.com/nix-rust/nix/pull/438 ) )
79
78
- Added support for POSIX AIO
80
79
([ #483 ] ( https://github.com/nix-rust/nix/pull/483 ) )
81
80
([ #506 ] ( https://github.com/nix-rust/nix/pull/506 ) )
@@ -111,7 +110,7 @@ This project adheres to [Semantic Versioning](http://semver.org/).
111
110
- Added ` ppoll ` in ` ::nix::poll `
112
111
([ #520 ] ( https://github.com/nix-rust/nix/pull/520 ) )
113
112
- Added support for getting and setting pipe size with fcntl(2) on Linux
114
- ([ #540 ] ( https://github.com/nix-rust/nix/pull/540 )
113
+ ([ #540 ] ( https://github.com/nix-rust/nix/pull/540 ) )
115
114
116
115
### Changed
117
116
- ` ::nix::sys::termios::{cfgetispeed, cfsetispeed, cfgetospeed, cfsetospeed} `
0 commit comments