/nrf52832-nimble/rt-thread/src/ |
H A D | signal.c | 56 /* handle signal */ in _signal_entry() 76 * To deliver a signal to thread, there are cases: 78 * set signal stat; 80 * - If function delivers a signal to self thread, just handle 82 * - If function delivers a signal to another ready thread, OS 95 /* resume thread to handle signal */ in _signal_deliver() 97 /* add signal state */ in _signal_deliver() 109 /* add signal state */ in _signal_deliver() 114 /* do signal action in self thread context */ in _signal_deliver() 119 /* add signal state */ in _signal_deliver() [all …]
|
/nrf52832-nimble/rt-thread/include/libc/ |
H A D | libc_signal.h | 23 /* Signal Generation and Delivery, P1003.1b-1993, p. 63 29 int sival_int; /* Integer signal value */ 30 void *sival_ptr; /* Pointer signal value */ 38 int sigev_signo; /* Signal number */ 39 union sigval sigev_value; /* Signal value */ 57 #define SI_USER 0x01 /* Signal sent by kill(). */ 58 #define SI_QUEUE 0x02 /* Signal sent by sigqueue(). */ 59 #define SI_TIMER 0x03 /* Signal generated by expiration of a 61 #define SI_ASYNCIO 0x04 /* Signal generated by completion of an 63 #define SI_MESGQ 0x05 /* Signal generated by arrival of a [all …]
|
/nrf52832-nimble/rt-thread/tools/kconfig-frontends/frontends/gconf/ |
H A D | gconf.glade | 20 <signal name="destroy" handler="on_window1_destroy" object="window1"/> 21 …<signal name="size_request" handler="on_window1_size_request" object="vpaned1" last_modification_t… 22 …<signal name="delete_event" handler="on_window1_delete_event" object="window1" last_modification_t… 49 <signal name="activate" handler="on_load1_activate"/> 50 <accelerator key="L" modifiers="GDK_CONTROL_MASK" signal="activate"/> 72 <signal name="activate" handler="on_save_activate"/> 73 <accelerator key="S" modifiers="GDK_CONTROL_MASK" signal="activate"/> 95 <signal name="activate" handler="on_save_as1_activate"/> 122 <signal name="activate" handler="on_quit1_activate"/> 123 <accelerator key="Q" modifiers="GDK_CONTROL_MASK" signal="activate"/> [all …]
|
/nrf52832-nimble/rt-thread/libcpu/sim/posix/ |
H A D | cpu_port.c | 10 #include <signal.h> 73 /* set the signal handler */ in signal_install() 84 /* set signal mask */ in signal_mask() 99 printf("get an unexpected signal <%d>, exit\n", sig); in thread_suspend_signal_handler() 111 TRACE("signal: SIGSUSPEND suspend <%s>\n", thread_from->rtthread->name); in thread_suspend_signal_handler() 129 TRACE("signal: SIGSUSPEND resume <%s>\n", thread_from->rtthread->name); in thread_suspend_signal_handler() 147 TRACE("signal: SIGRESUME resume <%s>\n", thread_to->rtthread->name); in thread_resume_signal_handler() 157 /* set signal mask, mask the timer! */ in thread_run() 251 /*TODO: It may need to unmask the signal */ in rt_hw_interrupt_disable() 363 /*TODO: It may need to unmask the signal */ in rt_hw_interrupt_enable() [all …]
|
/nrf52832-nimble/rt-thread/tools/kconfig-frontends/frontends/qconf/ |
H A D | qconf.cc | 279 connect(this, SIGNAL(editingFinished()), SLOT(hide())); in ConfigLineEdit() 332 connect(this, SIGNAL(itemSelectionChanged(void)), in ConfigList() 342 connect(configApp, SIGNAL(aboutToQuit()), SLOT(saveSettings())); in ConfigList() 888 connect(action, SIGNAL(toggled(bool)), in contextMenuEvent() 890 connect(parent(), SIGNAL(showNameChanged(bool)), in contextMenuEvent() 896 connect(action, SIGNAL(toggled(bool)), in contextMenuEvent() 898 connect(parent(), SIGNAL(showRangeChanged(bool)), in contextMenuEvent() 904 connect(action, SIGNAL(toggled(bool)), in contextMenuEvent() 906 connect(parent(), SIGNAL(showDataChanged(bool)), in contextMenuEvent() 1027 connect(configApp, SIGNAL(aboutToQuit()), SLOT(saveSettings())); in ConfigInfoView() [all …]
|
/nrf52832-nimble/rt-thread/components/CMSIS/RTOS/ |
H A D | cmsis_os.h | 115 #define osFeature_Signals 8 ///< maximum number of Signal Flags available per thread 151 osEventSignal = 0x08, ///< function completed; signal event occurred. 281 int32_t signals; ///< signal flags 378 /// Wait for Signal, Message, Mail, or Timeout 380 /// \return event that contains signal, message, or mail information or error code. 431 // ==== Signal Management ==== 433 /// Set the specified Signal Flags of an active thread. 435 /// \param[in] signals specifies the signal flags of the thread that should be set. 436 /// \return previous signal flags of the specified thread or 0x80000000 in case of incorrect parame… 438 int32_t osSignalSet (osThreadId thread_id, int32_t signal); [all …]
|
/nrf52832-nimble/nordic/nrfx/drivers/include/ |
H A D | nrfx_spi.h | 82 * MISO, and Slave Select to specify that the given signal is not used and 95 * if this signal is not needed. */ 98 * if this signal is not needed. */ 101 * if this signal is not needed. The driver 102 * supports only active low for this signal. 103 * If the signal should be active high,
|
H A D | nrfx_i2s.h | 52 * SDOUT, SDIN, and MCK to specify that a given signal is not used 64 * if this signal is not needed. */ 67 * if this signal is not needed. */ 70 * if this signal is not needed. */
|
H A D | nrfx_spis.h | 82 * and MISO to specify that the given signal is not used and therefore 129 * if this signal is not needed. */ 132 * if this signal is not needed. */
|
H A D | nrfx_spim.h | 85 * MISO, and Slave Select to specify that the given signal is not used and 98 * if this signal is not needed. */ 101 * if this signal is not needed. */ 104 * if this signal is not needed. */
|
/nrf52832-nimble/rt-thread/examples/libc/ |
H A D | ex5.c | 40 /* Signal that the buffer contains one more element for reading */ in put() 55 /* Signal that the buffer has now one more location for writing */ in get()
|
H A D | ex2.c | 45 /* Signal that the buffer is now not empty */ in put() 64 /* Signal that the buffer is now not full */ in get()
|
/nrf52832-nimble/packages/NimBLE-latest/porting/npl/linux/src/ |
H A D | os_callout.c | 26 #include <signal.h> 58 event.sigev_value.sival_ptr = c; // put callout obj in signal args in ble_npl_callout_init()
|
/nrf52832-nimble/rt-thread/libcpu/xilinx/microblaze/ |
H A D | trap.c | 127 * highest numbered interrupt input signal that is used. 149 * intput signal in rt_hw_trap_irq()
|
/nrf52832-nimble/rt-thread/tools/ |
H A D | gcc.py | 167 if CheckHeader(rtconfig, 'sys/signal.h'): 168 str += '#include <sys/signal.h>\n'
|
/nrf52832-nimble/rt-thread/libcpu/mips/x1000/ |
H A D | x1000_slcdc.h | 369 /* PS Signal Setting */ 374 /* CLS Signal Setting */ 379 /* SPL Signal Setting */ 384 /* REV Signal Setting */
|
/nrf52832-nimble/rt-thread/tools/kconfig-frontends/libs/lxdialog/ |
H A D | dialog.h | 153 extern int saved_x, saved_y; /* Needed in signal handler in mconf.c */ 254 * -- the lowercase are used to signal mouse-enter events (M_EVENT + 'o')
|
/nrf52832-nimble/nordic/nrfx/hal/ |
H A D | nrf_radio.h | 59 …TASKS_RSSISTART), /**< Start the RSSI and take one single sample of the receive signal strength. */ 91 … = offsetof(NRF_RADIO_Type, EVENTS_RSSIEND), /**< Sampling of receive signal strength complete.… 247 …rMode, /**< Carrier Seen. Will report busy whenever compliant IEEE 802.15.4 signal is seen. */ 726 * @note The read value is a positive value while the actual received signal 727 * is a negative value. Actual received signal strength is therefore as follows: 728 * received signal strength = - read_value dBm . 925 * signal detect is enabled.
|
H A D | nrf_spim.h | 50 * function to specify that a given SPI signal (SCK, MOSI, or MISO) 347 * If a given signal is not needed, pass the @ref NRF_SPIM_PIN_NOT_CONNECTED 364 * If this signal is not needed, pass the @ref NRF_SPIM_PIN_NOT_CONNECTED 384 * If this signal is not needed, pass the @ref NRF_SPIM_PIN_NOT_CONNECTED
|
/nrf52832-nimble/rt-thread/components/libc/aio/ |
H A D | posix_aio.h | 22 struct sigevent aio_sigevent; /* Signal number and value. */
|
/nrf52832-nimble/rt-thread/components/libc/signal/ |
H A D | posix_signal.h | 19 #include <sys/signal.h>
|
/nrf52832-nimble/nordic/nrfx/mdk/ |
H A D | nrf52840.h | 295 …__IOM uint32_t RTS; /*!< (@ 0x00000000) Pin select for RTS signal … 296 …__IOM uint32_t TXD; /*!< (@ 0x00000004) Pin select for TXD signal … 297 …__IOM uint32_t CTS; /*!< (@ 0x00000008) Pin select for CTS signal … 298 …__IOM uint32_t RXD; /*!< (@ 0x0000000C) Pin select for RXD signal … 327 …__IOM uint32_t MOSI; /*!< (@ 0x00000004) Pin select for MOSI signal … 328 …__IOM uint32_t MISO; /*!< (@ 0x00000008) Pin select for MISO signal … 337 …__IOM uint32_t MOSI; /*!< (@ 0x00000004) Pin select for MOSI signal … 338 …__IOM uint32_t MISO; /*!< (@ 0x00000008) Pin select for MISO signal … 381 …__IOM uint32_t MISO; /*!< (@ 0x00000004) Pin select for MISO signal … 382 …__IOM uint32_t MOSI; /*!< (@ 0x00000008) Pin select for MOSI signal … [all …]
|
H A D | nrf52810.h | 239 …__IOM uint32_t RTS; /*!< (@ 0x00000000) Pin select for RTS signal … 240 …__IOM uint32_t TXD; /*!< (@ 0x00000004) Pin select for TXD signal … 241 …__IOM uint32_t CTS; /*!< (@ 0x00000008) Pin select for CTS signal … 242 …__IOM uint32_t RXD; /*!< (@ 0x0000000C) Pin select for RXD signal … 270 …__IOM uint32_t SCL; /*!< (@ 0x00000000) Pin select for SCL signal … 271 …__IOM uint32_t SDA; /*!< (@ 0x00000004) Pin select for SDA signal … 301 …__IOM uint32_t SCL; /*!< (@ 0x00000000) Pin select for SCL signal … 302 …__IOM uint32_t SDA; /*!< (@ 0x00000004) Pin select for SDA signal … 331 …__IOM uint32_t MOSI; /*!< (@ 0x00000004) Pin select for MOSI signal … 332 …__IOM uint32_t MISO; /*!< (@ 0x00000008) Pin select for MISO signal … [all …]
|
H A D | nrf9160.h | 364 …__IOM uint32_t MOSI; /*!< (@ 0x00000004) Pin select for MOSI signal … 365 …__IOM uint32_t MISO; /*!< (@ 0x00000008) Pin select for MISO signal … 396 …__IOM uint32_t MISO; /*!< (@ 0x00000004) Pin select for MISO signal … 397 …__IOM uint32_t MOSI; /*!< (@ 0x00000008) Pin select for MOSI signal … 398 …__IOM uint32_t CSN; /*!< (@ 0x0000000C) Pin select for CSN signal … 426 …__IOM uint32_t SCL; /*!< (@ 0x00000000) Pin select for SCL signal … 427 …__IOM uint32_t SDA; /*!< (@ 0x00000004) Pin select for SDA signal … 457 …__IOM uint32_t SCL; /*!< (@ 0x00000000) Pin select for SCL signal … 458 …__IOM uint32_t SDA; /*!< (@ 0x00000004) Pin select for SDA signal … 486 …__IOM uint32_t RTS; /*!< (@ 0x00000000) Pin select for RTS signal … [all …]
|
/nrf52832-nimble/rt-thread/components/libc/compilers/minilibc/sys/ |
H A D | stat.h | 22 #define _FASYNC 0x0040 /* signal pgrp when data ready */
|