Revision 93148aa5
b/configure | ||
---|---|---|
232 | 232 |
done |
233 | 233 |
# OS specific |
234 | 234 |
# Using uname is really, really broken. Once we have the right set of checks |
235 |
# we can eliminate it's usage altogether
|
|
235 |
# we can eliminate its usage altogether.
|
|
236 | 236 |
|
237 | 237 |
cc="${CC-${cross_prefix}gcc}" |
238 | 238 |
ar="${AR-${cross_prefix}ar}" |
b/hw/exynos4210_mct.c | ||
---|---|---|
888 | 888 |
static uint64_t time2[2] = {0}; |
889 | 889 |
#endif |
890 | 890 |
|
891 |
/* Call tick_timer event handler, it will update it's tcntb and icntb */
|
|
891 |
/* Call tick_timer event handler, it will update its tcntb and icntb. */
|
|
892 | 892 |
exynos4210_ltick_timer_event(&s->tick_timer); |
893 | 893 |
|
894 | 894 |
/* get tick_timer cnt */ |
b/hw/usb-ccid.c | ||
---|---|---|
5 | 5 |
* |
6 | 6 |
* Written by Alon Levy, with contributions from Robert Relyea. |
7 | 7 |
* |
8 |
* Based on usb-serial.c, see it's copyright and attributions below.
|
|
8 |
* Based on usb-serial.c, see its copyright and attributions below. |
|
9 | 9 |
* |
10 | 10 |
* This work is licensed under the terms of the GNU GPL, version 2.1 or later. |
11 | 11 |
* See the COPYING file in the top-level directory. |
b/include/qemu/object.h | ||
---|---|---|
124 | 124 |
* |
125 | 125 |
* Once all of the parent classes have been initialized, #TypeInfo::class_init |
126 | 126 |
* is called to let the class being instantiated provide default initialize for |
127 |
* it's virtual functions. Here is how the above example might be modified
|
|
127 |
* its virtual functions. Here is how the above example might be modified |
|
128 | 128 |
* to introduce an overridden virtual function: |
129 | 129 |
* |
130 | 130 |
* <example> |
... | ... | |
527 | 527 |
* type_register: |
528 | 528 |
* @info: The #TypeInfo of the new type |
529 | 529 |
* |
530 |
* Unlike type_register_static(), this call does not require @info or it's
|
|
530 |
* Unlike type_register_static(), this call does not require @info or its |
|
531 | 531 |
* string members to continue to exist after the call returns. |
532 | 532 |
* |
533 | 533 |
* Returns: 0 on failure, the new #Type on success. |
b/kvm-all.c | ||
---|---|---|
35 | 35 |
#include <sys/eventfd.h> |
36 | 36 |
#endif |
37 | 37 |
|
38 |
/* KVM uses PAGE_SIZE in it's definition of COALESCED_MMIO_MAX */
|
|
38 |
/* KVM uses PAGE_SIZE in its definition of COALESCED_MMIO_MAX */ |
|
39 | 39 |
#define PAGE_SIZE TARGET_PAGE_SIZE |
40 | 40 |
|
41 | 41 |
//#define DEBUG_KVM |
b/libcacard/vscclient.c | ||
---|---|---|
129 | 129 |
vevent_delete(event); |
130 | 130 |
continue; |
131 | 131 |
} |
132 |
/* this reader hasn't been told it's status from qemu yet, wait for
|
|
132 |
/* this reader hasn't been told its status from qemu yet, wait for |
|
133 | 133 |
* that status */ |
134 | 134 |
while (pending_reader != NULL) { |
135 | 135 |
qemu_cond_wait(&pending_reader_condition, &pending_reader_lock); |
b/linux-user/signal.c | ||
---|---|---|
2700 | 2700 |
sp = regs->active_tc.gpr[29]; |
2701 | 2701 |
|
2702 | 2702 |
/* |
2703 |
* FPU emulator may have it's own trampoline active just
|
|
2703 |
* FPU emulator may have its own trampoline active just |
|
2704 | 2704 |
* above the user stack, 16-bytes before the next lowest |
2705 | 2705 |
* 16 byte boundary. Try to avoid trashing it. |
2706 | 2706 |
*/ |
b/qemu-file.h | ||
---|---|---|
47 | 47 |
*/ |
48 | 48 |
typedef int (QEMUFileCloseFunc)(void *opaque); |
49 | 49 |
|
50 |
/* Called to determine if the file has exceeded it's bandwidth allocation. The
|
|
50 |
/* Called to determine if the file has exceeded its bandwidth allocation. The |
|
51 | 51 |
* bandwidth capping is a soft limit, not a hard limit. |
52 | 52 |
*/ |
53 | 53 |
typedef int (QEMUFileRateLimit)(void *opaque); |
b/target-mips/op_helper.c | ||
---|---|---|
1930 | 1930 |
|
1931 | 1931 |
do { |
1932 | 1932 |
if (other_cpu != env |
1933 |
/* If the VPE is WFI, dont distrub it's sleep. */
|
|
1933 |
/* If the VPE is WFI, don't disturb its sleep. */
|
|
1934 | 1934 |
&& !mips_vpe_is_wfi(other_cpu)) { |
1935 | 1935 |
/* Enable the VPE. */ |
1936 | 1936 |
other_cpu->mvp->CP0_MVPControl |= (1 << CP0MVPCo_EVP); |
Also available in: Unified diff