Ignore:
Timestamp:
2010-01-23T19:19:18Z (16 years ago)
Author:
Jiri Svoboda <jiri@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
03333bc
Parents:
336db295
Message:

Implement fault notifications and task monitoring service.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • kernel/generic/src/udebug/udebug_ops.c

    r336db295 ra074b4f  
    209209
    210210                mutex_lock(&t->udebug.lock);
    211                 if ((t->flags & THREAD_FLAG_USPACE) != 0)
     211                if ((t->flags & THREAD_FLAG_USPACE) != 0) {
    212212                        t->udebug.active = true;
    213                 mutex_unlock(&t->udebug.lock);
     213                        mutex_unlock(&t->udebug.lock);
     214                        condvar_broadcast(&t->udebug.active_cv);
     215                } else {
     216                        mutex_unlock(&t->udebug.lock);
     217                }
    214218        }
    215219
Note: See TracChangeset for help on using the changeset viewer.