init_signals.cc (10476:f058e09b7d69) init_signals.cc (11080:31ab5ca6836d)
1/*
2 * Copyright (c) 2012 ARM Limited
3 * All rights reserved
4 *
5 * The license below extends only to copyright in the software and shall
6 * not be construed as granting a license to any other intellectual
7 * property including but not limited to intellectual property relating
8 * to a hardware implementation of the functionality of the software

--- 73 unchanged lines hidden (view full) ---

82 /* Wake up some event queue to handle event */
83 getEventQueue(0)->wakeup();
84}
85
86/// Abort signal handler.
87void
88abortHandler(int sigtype)
89{
1/*
2 * Copyright (c) 2012 ARM Limited
3 * All rights reserved
4 *
5 * The license below extends only to copyright in the software and shall
6 * not be construed as granting a license to any other intellectual
7 * property including but not limited to intellectual property relating
8 * to a hardware implementation of the functionality of the software

--- 73 unchanged lines hidden (view full) ---

82 /* Wake up some event queue to handle event */
83 getEventQueue(0)->wakeup();
84}
85
86/// Abort signal handler.
87void
88abortHandler(int sigtype)
89{
90 ccprintf(cerr, "Program aborted at cycle %d\n", curTick());
90 ccprintf(cerr, "Program aborted at tick %llu\n", curTick());
91}
92
93// Handle SIGIO
94static void
95ioHandler(int sigtype)
96{
97 async_event = true;
98 async_io = true;

--- 49 unchanged lines hidden ---
91}
92
93// Handle SIGIO
94static void
95ioHandler(int sigtype)
96{
97 async_event = true;
98 async_io = true;

--- 49 unchanged lines hidden ---