You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am using libp11 as an engine for osslsigncode (openssl under the surface i suspect). When performing a sign operation, libp11 hangs in p11_slot.c:pkcs11_get_session(). Note that I am running this in a bit of a non standard environment, and that when running directly on my regular system I do not have this problem.
When running this with gdb, I can see that the hang occurs at the call to pthread_cond_wait() in pkcs11_get_session(), and when putting a break point at pkcs11_get_session() the output of the slot, just before the hanging call, looks as below.
I'm not sure if the original problem is caused by libp11, but at least it seems like it is calling pthread_cond_wait() at a point in time where it should not.
The text was updated successfully, but these errors were encountered:
I am using libp11 as an engine for osslsigncode (openssl under the surface i suspect). When performing a sign operation, libp11 hangs in
p11_slot.c:pkcs11_get_session()
. Note that I am running this in a bit of a non standard environment, and that when running directly on my regular system I do not have this problem.When running this with gdb, I can see that the hang occurs at the call to
pthread_cond_wait()
inpkcs11_get_session()
, and when putting a break point atpkcs11_get_session()
the output of theslot
, just before the hanging call, looks as below.I'm not sure if the original problem is caused by libp11, but at least it seems like it is calling
pthread_cond_wait()
at a point in time where it should not.The text was updated successfully, but these errors were encountered: