diff options
author | tick <tick@99fdad57-331a-0410-800a-d7fa5415bdb3> | 2007-11-20 04:17:35 +0000 |
---|---|---|
committer | tick <tick@99fdad57-331a-0410-800a-d7fa5415bdb3> | 2007-11-20 04:17:35 +0000 |
commit | 6ad8e1931d2df52ff173e4b83a5c3c0e1812b931 (patch) | |
tree | 48dc9cbaf6e424eb8ee818873623498b20fc8a53 /include | |
parent | 5e9fde8743d4d3d733303bef99e20000c0769148 (diff) |
[gsmd] Adding atcmd_terminate_matching (remove from the queues any command whose .ctx matches given)(Andrzej Zaborowski)
git-svn-id: http://svn.openmoko.org/trunk/src/target/gsm@3447 99fdad57-331a-0410-800a-d7fa5415bdb3
Diffstat (limited to 'include')
-rw-r--r-- | include/gsmd/atcmd.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/gsmd/atcmd.h b/include/gsmd/atcmd.h index e328934..60bca8e 100644 --- a/include/gsmd/atcmd.h +++ b/include/gsmd/atcmd.h @@ -13,8 +13,9 @@ extern int atcmd_submit(struct gsmd *g, struct gsmd_atcmd *cmd); extern int cancel_atcmd(struct gsmd *g, struct gsmd_atcmd *cmd); extern int atcmd_init(struct gsmd *g, int sockfd); extern void atcmd_drain(int fd); +extern int atcmd_terminate_matching(struct gsmd *g, void *ctx); extern void atcmd_wake_pending_queue (struct gsmd *g); -extern void atcmd_wait_pending_queue (struct gsmd *g); +extern void atcmd_wait_pending_queue (struct gsmd *g); #endif /* __GSMD__ */ |