OLD | NEW |
---|---|
(Empty) | |
1 /* | |
2 * Copyright (c) 2015 The Native Client Authors. All rights reserved. | |
3 * Use of this source code is governed by a BSD-style license that can be | |
4 * found in the LICENSE file. | |
5 */ | |
6 | |
7 /* On x86-64 we build the IRT with sandbox base-address hiding. This means that | |
jvoung (off chromium)
2015/03/19 19:38:56
nit: Usual NaCl style for multi-line C comments is
Derek Schuff
2015/03/19 19:47:58
Done.
| |
8 * all of its components must be built with LLVM's assembler. Currently the | |
9 * unwinder library is built with nacl-gcc and so does not use base address | |
10 * hiding. The IRT does not use exceptions, so we do not actually need the | |
11 * unwinder at all. To prevent it from being linked into the IRT, we provide | |
12 * stub implementations of its functions that are referenced from crtbegin.c. | |
13 */ | |
14 | |
15 void __register_frame_info(void *begin, void *ob) {} | |
16 void __deregister_frame_info(const void *begin) {} | |
OLD | NEW |