Subversion Repositories HelenOS-historic

Rev

Rev 1196 | Rev 1705 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 1196 Rev 1702
Line 24... Line 24...
24
 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
24
 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25
 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
25
 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
26
 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
26
 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27
 */
27
 */
28
 
28
 
-
 
29
 /** @addtogroup mips32debug mips32
-
 
30
 * @ingroup debug
-
 
31
 * @{
-
 
32
 */
-
 
33
/** @file
-
 
34
 */
-
 
35
 
29
#include <arch/debugger.h>
36
#include <arch/debugger.h>
30
#include <memstr.h>
37
#include <memstr.h>
31
#include <console/kconsole.h>
38
#include <console/kconsole.h>
32
#include <console/cmd.h>
39
#include <console/cmd.h>
33
#include <symtab.h>
40
#include <symtab.h>
Line 374... Line 381...
374
        /* Remove in-progress flag */
381
        /* Remove in-progress flag */
375
        cur->flags &= ~BKPOINT_INPROG;
382
        cur->flags &= ~BKPOINT_INPROG;
376
    }
383
    }
377
    spinlock_unlock(&bkpoint_lock);
384
    spinlock_unlock(&bkpoint_lock);
378
}
385
}
-
 
386
 
-
 
387
 /** @}
-
 
388
 */
-
 
389