Skip to content

Commit e691d94

Browse files
committed
Ensure comments are no longer than 80 chars
1 parent 216d800 commit e691d94

File tree

1 file changed

+6
-2
lines changed
  • src/unix/linux_like/linux/musl/b64/x86_64

1 file changed

+6
-2
lines changed

src/unix/linux_like/linux/musl/b64/x86_64/mod.rs

+6-2
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,9 @@ s! {
100100
pub u_debugreg: [::c_ulong; 8],
101101
}
102102

103-
// https://github.com/ifduyue/musl/blob/b4b1e10364c8737a632be61582e05a8d3acf5690/arch/x86_64/bits/signal.h#L80-L84
103+
// GitHub repo: ifduyue/musl/
104+
// commit: b4b1e10364c8737a632be61582e05a8d3acf5690
105+
// file: arch/x86_64/bits/signal.h#L80-L84
104106
pub struct mcontext_t {
105107
pub gregs: [greg_t; 23],
106108
__private: [u64; 9],
@@ -607,7 +609,9 @@ pub const FS: ::c_int = 25;
607609
pub const GS: ::c_int = 26;
608610

609611
// offsets in mcontext_t.gregs from bits/signal.h
610-
// https://github.com/ifduyue/musl/blob/b4b1e10364c8737a632be61582e05a8d3acf5690/arch/x86_64/bits/signal.h#L9-L56
612+
// GitHub repo: ifduyue/musl/
613+
// commit: b4b1e10364c8737a632be61582e05a8d3acf5690
614+
// file: arch/x86_64/bits/signal.h#L9-L56
611615
pub const REG_R8: ::c_int = 0;
612616
pub const REG_R9: ::c_int = 1;
613617
pub const REG_R10: ::c_int = 2;

0 commit comments

Comments
 (0)