diff options
| author | Werner Koch <[email protected]> | 2019-06-17 14:19:22 +0000 |
|---|---|---|
| committer | Werner Koch <[email protected]> | 2019-06-17 14:19:22 +0000 |
| commit | c594dcfc93486cd26e193aa5c82bb8a8f30ab57b (patch) | |
| tree | db49823e5231d3ea3210f3b7c9b042b892a54e1d /scd/scdaemon.h | |
| parent | scd: Slight change to app->fnc.do_with_keygrip. (diff) | |
| download | gnupg-c594dcfc93486cd26e193aa5c82bb8a8f30ab57b.tar.gz gnupg-c594dcfc93486cd26e193aa5c82bb8a8f30ab57b.zip | |
scd: Add explict functions for 'app' reference counting.
* scd/app.c (app_ref): New.
(app_unref): New.
(release_application): Renamed to ...
(app_unref_locked): this and remove arg locked_already. Change
callers to use this or app_ref.
* scd/command.c (open_card_with_request):
(cmd_pksign, cmd_pkauth, cmd_pkdecrypt): Use app_ref and app_unref
instead of accessing the counter directly.
--
This is better in case we need to debug stuff. There is a real change
however: We now lock and unlock the app before changing the reference
count.
The whole app locking business should be reviewed because we pass
pointers along without immediately bumping the refcount.
Signed-off-by: Werner Koch <[email protected]>
Diffstat (limited to 'scd/scdaemon.h')
| -rw-r--r-- | scd/scdaemon.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/scd/scdaemon.h b/scd/scdaemon.h index 230653b11..7eb08a904 100644 --- a/scd/scdaemon.h +++ b/scd/scdaemon.h @@ -129,7 +129,10 @@ void send_keyinfo (ctrl_t ctrl, int data, const char *keygrip_str, const char *serialno, const char *idstr); void popup_prompt (void *opaque, int on); + +/* Take care: this function assumes that APP is locked. */ void send_client_notifications (app_t app, int removal); + void scd_kick_the_loop (void); int get_active_connection_count (void); |
