File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -47,7 +47,7 @@ static EXCEPTION_TYPE_INFO: TypeInfo = TypeInfo {
47
47
name : b"rust_panic\0 " . as_ptr ( ) ,
48
48
} ;
49
49
50
- // NOTE(nbdd0121): The `canary` field will be part of stable ABI after `c_unwind` stabilization .
50
+ // NOTE(nbdd0121): The `canary` field is part of stable ABI.
51
51
#[ repr( C ) ]
52
52
struct Exception {
53
53
// See `gcc.rs` on why this is present. We already have a static here so just use it.
Original file line number Diff line number Diff line change @@ -48,8 +48,8 @@ use unwind as uw;
48
48
static CANARY : u8 = 0 ;
49
49
50
50
// NOTE(nbdd0121)
51
- // Once `c_unwind` feature is stabilized, there will be ABI stability requirement
52
- // on this struct. The first two field must be `_Unwind_Exception` and `canary`,
51
+ // There is an ABI stability requirement on this struct.
52
+ // The first two field must be `_Unwind_Exception` and `canary`,
53
53
// as it may be accessed by a different version of the std with a different compiler.
54
54
#[ repr( C ) ]
55
55
struct Exception {
Original file line number Diff line number Diff line change @@ -52,7 +52,7 @@ use core::mem::{self, ManuallyDrop};
52
52
use core:: ptr;
53
53
use libc:: { c_int, c_uint, c_void} ;
54
54
55
- // NOTE(nbdd0121): The `canary` field will be part of stable ABI after `c_unwind` stabilization .
55
+ // NOTE(nbdd0121): The `canary` field is part of stable ABI.
56
56
#[ repr( C ) ]
57
57
struct Exception {
58
58
// See `gcc.rs` on why this is present. We already have a static here so just use it.
You can’t perform that action at this time.
0 commit comments