diff options
| author | Linux Build Service Account <lnxbuild@localhost> | 2018-04-12 18:21:51 -0700 |
|---|---|---|
| committer | Gerrit - the friendly Code Review server <code-review@localhost> | 2018-04-12 18:21:51 -0700 |
| commit | bef554d6c99822e69f33e87318bf963dace54653 (patch) | |
| tree | 4c7d40332f904d8bfd6e3a5b58375c9a2afea13d /include/linux | |
| parent | 5c27031002e0f42374391fc637cd1f74dc3dc90d (diff) | |
| parent | eddcb311588bdb49ef4168a23b977d879d372f4a (diff) | |
Merge "clk: msm: Fix signal interrupt issue for virtual clock"
Diffstat (limited to 'include/linux')
| -rw-r--r-- | include/linux/habmm.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/include/linux/habmm.h b/include/linux/habmm.h index b4b31dc36faf..966c5ee91be4 100644 --- a/include/linux/habmm.h +++ b/include/linux/habmm.h @@ -143,6 +143,11 @@ int32_t habmm_socket_send(int32_t handle, void *src_buff, uint32_t size_bytes, */ #define HABMM_SOCKET_RECV_FLAGS_NON_BLOCKING 0x00000001 +/* In the blocking mode, this flag is used to indicate it is an + * uninterruptbile blocking call. + */ +#define HABMM_SOCKET_RECV_FLAGS_UNINTERRUPTIBLE 0x00000002 + int32_t habmm_socket_recv(int32_t handle, void *dst_buff, uint32_t *size_bytes, uint32_t timeout, uint32_t flags); |
