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
Hi, developers, thank you for your checking. The lock &gdb->client_mutex may be acquired twice, which can lead to deadlock? Also, it seems the lock &gdb->client_mutex is not released in the thread correctly because there is no cen64_mutex_unlock(&gdb->client_mutex); statement.
CEN64_THREAD_RETURN_TYPE gdb_thread(void *opaque) {
cen64_thread_setname(NULL, "gdb");
struct gdb *gdb = (struct gdb *) opaque;
cen64_mutex_lock(&gdb->client_mutex); // acquire the lock first time
// wait until first breakpoint is hit before entering loop
if (gdb->flags & GDB_FLAGS_INITIAL) {
cen64_cv_wait(&gdb->client_semaphore, &gdb->client_mutex);
} else {
cen64_mutex_lock(&gdb->client_mutex); // acquire the lock second time
}
...;
return CEN64_THREAD_RETURN_VAL;
}
@lambertjamesd Thank you for your reply. Actually, I do not trigger the deadlock in runtime but I use a static code analysis tool that warns of this case.
Hi, developers, thank you for your checking. The lock
&gdb->client_mutex
may be acquired twice, which can lead to deadlock? Also, it seems the lock&gdb->client_mutex
is not released in the thread correctly because there is nocen64_mutex_unlock(&gdb->client_mutex); statement
.cen64/gdb/gdb.c
Line 85 in 1b31ca9
cen64/gdb/gdb.c
Line 91 in 1b31ca9
The relevant code is shown:
The text was updated successfully, but these errors were encountered: