Skip to content

Commit a9d2e3a

Browse files
committed
[dev.boringcrypto] all: merge master into dev.boringcrypto
Change-Id: Idd59c37d2fd759b0f73d2ee01b30f72ef4e9aee8
2 parents c19c0a0 + c9d5f60 commit a9d2e3a

995 files changed

Lines changed: 118367 additions & 139520 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

AUTHORS

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -96,6 +96,7 @@ Alexei Sholik <[email protected]>
9696
Alexey Borzenkov <[email protected]>
9797
Alexey Neganov <[email protected]>
9898
Alexey Palazhchenko <[email protected]>
99+
Alexey Semenyuk <[email protected]>
99100
Alexis Hildebrandt <[email protected]>
100101
Ali Rizvi-Santiago <[email protected]>
101102
Aliaksandr Valialkin <[email protected]>
@@ -144,6 +145,7 @@ Andy Davis <[email protected]>
144145
Andy Finkenstadt <[email protected]>
145146
Andy Lindeman <[email protected]>
146147
Andy Maloney <[email protected]>
148+
147149
Andy Walker <[email protected]>
148150
Anfernee Yongkun Gui <[email protected]>
149151
Angelo Bulfone <[email protected]>
@@ -1143,6 +1145,7 @@ Pontus Leitzler <[email protected]>
11431145
Prashant Varanasi <[email protected]>
11441146
Pravendra Singh <[email protected]>
11451147
Preetam Jinka <[email protected]>
1148+
Qais Patankar <[email protected]>
11461149
Qiuxuan Zhu <[email protected]>
11471150
Qualcomm Data Center, Inc.
11481151
Quan Tran <[email protected]>
@@ -1308,6 +1311,7 @@ Szabolcs Nagy <[email protected]>
13081311
Taavi Kivisik <[email protected]>
13091312
Tad Fisher <[email protected]>
13101313
Tad Glines <[email protected]>
1314+
Tailscale Inc.
13111315
Taj Khattra <[email protected]>
13121316
Takayoshi Nishida <[email protected]>
13131317
Takeshi YAMANASHI <[email protected]>

CONTRIBUTORS

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -145,6 +145,7 @@ Alexey Borzenkov <[email protected]>
145145
Alexey Naidonov <[email protected]>
146146
Alexey Neganov <[email protected]>
147147
Alexey Palazhchenko <[email protected]>
148+
Alexey Semenyuk <[email protected]>
148149
Alexis Hildebrandt <[email protected]>
149150
Alexis Hunt <[email protected]>
150151
Alexis Imperial-Legrand <[email protected]>
@@ -216,6 +217,7 @@ Andy Davis <[email protected]>
216217
Andy Finkenstadt <[email protected]>
217218
Andy Lindeman <[email protected]>
218219
Andy Maloney <[email protected]>
220+
219221
Andy Walker <[email protected]>
220222
Andzej Maciusovic <[email protected]>
221223
Anfernee Yongkun Gui <[email protected]>

api/except.txt

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,6 @@ pkg os (linux-arm), const O_SYNC = 4096
88
pkg os (linux-arm-cgo), const O_SYNC = 4096
99
pkg os (linux-arm), const O_SYNC = 1052672
1010
pkg os (linux-arm-cgo), const O_SYNC = 1052672
11-
pkg syscall (darwin-386), const ImplementsGetwd = false
12-
pkg syscall (darwin-386), func Fchflags(string, int) error
13-
pkg syscall (darwin-386-cgo), const ImplementsGetwd = false
14-
pkg syscall (darwin-386-cgo), func Fchflags(string, int) error
1511
pkg syscall (darwin-amd64), const ImplementsGetwd = false
1612
pkg syscall (darwin-amd64), func Fchflags(string, int) error
1713
pkg syscall (darwin-amd64-cgo), const ImplementsGetwd = false

doc/asm.html

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -437,6 +437,31 @@ <h3 id="directives">Directives</h3>
437437
(For <code>TEXT</code> items.)
438438
This function is a closure so it uses its incoming context register.
439439
</li>
440+
<li>
441+
<code>LOCAL</code> = 128
442+
<br>
443+
This symbol is local to the dynamic shared object.
444+
</li>
445+
<li>
446+
<code>TLSBSS</code> = 256
447+
<br>
448+
(For <code>DATA</code> and <code>GLOBL</code> items.)
449+
Put this data in thread local storage.
450+
</li>
451+
<li>
452+
<code>NOFRAME</code> = 512
453+
<br>
454+
(For <code>TEXT</code> items.)
455+
Do not insert instructions to allocate a stack frame and save/restore the return
456+
address, even if this is not a leaf function.
457+
Only valid on functions that declare a frame size of 0.
458+
</li>
459+
<li>
460+
<code>TOPFRAME</code> = 2048
461+
<br>
462+
(For <code>TEXT</code> items.)
463+
Function is the top of the call stack. Traceback should stop at this function.
464+
</li>
440465
</ul>
441466

442467
<h3 id="runtime">Runtime Coordination</h3>

doc/contrib.html

Lines changed: 0 additions & 133 deletions
This file was deleted.

doc/debugging_with_gdb.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,13 +18,13 @@
1818
</p>
1919
<p>
2020
Note that
21-
<a href="https://github.com/derekparker/delve">Delve</a> is a better
21+
<a href="https://github.com/go-delve/delve">Delve</a> is a better
2222
alternative to GDB when debugging Go programs built with the standard
2323
toolchain. It understands the Go runtime, data structures, and
2424
expressions better than GDB. Delve currently supports Linux, OSX,
2525
and Windows on <code>amd64</code>.
2626
For the most up-to-date list of supported platforms, please see
27-
<a href="https://github.com/derekparker/delve/tree/master/Documentation/installation">
27+
<a href="https://github.com/go-delve/delve/tree/master/Documentation/installation">
2828
the Delve documentation</a>.
2929
</p>
3030
</i>

0 commit comments

Comments
 (0)