scsi_evt_thread
时间: 2023-10-08 16:12:11 浏览: 211
scsi_evt_thread 是一个线程,它在异步通知 sata_async_notification 中被唤醒。当事件类型为 SDEV_EVT_MEDIA_CHANGE 时,会调用该线程。该线程主要负责处理与 SCSI 设备事件相关的工作。在 scsi_alloc_sdev 初始化过程中,会将该线程设置为 scsi_evt_thread。在处理过程中,会调用 scsi_evt_thread,并通过 kobject_uevent_env 向用户空间发送事件通知。
相关问题
static void db_disc_handler(ble_db_discovery_evt_t * p_evt) { ble_cds_on_db_disc_evt(&m_cds_c, p_evt); ble_sts_on_db_disc_evt(&m_sts_c, p_evt); ble_ftms_on_db_disc_evt(&m_ftms_c, p_evt); }
这是一段 C 语言代码,其中定义了一个函数 `db_disc_handler`,它的参数是一个指向 `ble_db_discovery_evt_t` 结构体的指针 `p_evt`。在函数体内,分别调用了三个不同的函数 `ble_cds_on_db_disc_evt`、`ble_sts_on_db_disc_evt` 和 `ble_ftms_on_db_disc_evt`,并将它们的参数分别传入了三个不同的变量 `m_cds_c`、`m_sts_c` 和 `m_ftms_c`。这段代码的功能看起来是在处理 BLE 设备的数据库发现事件,但具体实现细节需要看这些函数的定义和上下文环境。
static void ble_evt_handler(ble_evt_t const * p_ble_evt, void * p_context) { uint16_t conn_handle = p_ble_evt->evt.gap_evt.conn_handle; uint16_t role = ble_conn_state_role(conn_handle); // Based on the role this device plays in the connection, dispatch to the right handler. if (role == BLE_GAP_ROLE_PERIPH || ble_evt_is_advertising_timeout(p_ble_evt)) { ble_evt_dispatch(p_ble_evt, p_context); } else if ((role == BLE_GAP_ROLE_CENTRAL) || (p_ble_evt->header.evt_id == BLE_GAP_EVT_ADV_REPORT)) { ble_module_central_evt(p_ble_evt, p_context); } }
这是一个 Bluetooth Low Energy (BLE) 事件处理函数,用于处理 BLE 事件。它首先从事件中获取连接句柄和连接角色信息,然后根据角色信息将事件分发给不同的处理函数。如果设备角色是 BLE_GAP_ROLE_PERIPH,或者事件是广告超时事件,则将事件分发给 ble_evt_dispatch 函数进行处理。如果设备角色是 BLE_GAP_ROLE_CENTRAL,或者事件是 BLE_GAP_EVT_ADV_REPORT,则将事件分发给 ble_module_central_evt 函数进行处理。
阅读全文