Changeset 94a981a in mainline


Ignore:
Timestamp:
2009-03-12T17:42:29Z (15 years ago)
Author:
Martin Decky <martin@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
8030f49
Parents:
8ba3dc7
Message:

do not echo keypress

File:
1 edited

Legend:

Unmodified
Added
Removed
  • kernel/generic/src/interrupt/interrupt.c

    r8ba3dc7 r94a981a  
    4343#include <console/kconsole.h>
    4444#include <console/console.h>
    45 #include <console/chardev.h>
    4645#include <console/cmd.h>
    4746#include <panic.h>
     
    6968       
    7069        spinlock_lock(&exctbl_lock);
    71 
     70       
    7271        old = exc_table[n].f;
    7372        exc_table[n].f = f;
    7473        exc_table[n].name = name;
    75 
    76         spinlock_unlock(&exctbl_lock); 
    77 
     74       
     75        spinlock_unlock(&exctbl_lock);
     76       
    7877        return old;
    7978}
     
    149148                        printf(" -- Press any key to continue -- ");
    150149                        spinlock_unlock(&exctbl_lock);
    151                         getc(stdin);
     150                        _getc(stdin);
    152151                        spinlock_lock(&exctbl_lock);
    153152                        printf("\n");
Note: See TracChangeset for help on using the changeset viewer.