Changeset dc747e3 in mainline for arch/mips32/src/debugger.c


Ignore:
Timestamp:
2005-12-15T10:27:59Z (19 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
7dd2561
Parents:
3fc03fd
Message:

Add SPINLOCK_DECLARE and SPINLOCK_INITIALIZE macros.
SPINLOCK_DECLARE is to be used instead of direct spinlock_t declarations
in dynamically allocated structures on which spinlock_initialize() is called after
their creation.
SPINLOCK_INITIALIZE is to be used instead of direct spinlock_t declarations
of global spinlocks. It declares and initializes the spinlock.
Moreover, both macros are empty on UP so that -Wall warnings about unused structures
get supressed.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • arch/mips32/src/debugger.c

    r3fc03fd rdc747e3  
    3939
    4040bpinfo_t breakpoints[BKPOINTS_MAX];
    41 spinlock_t bkpoint_lock;
     41SPINLOCK_INITIALIZE(bkpoint_lock);
    4242
    4343static int cmd_print_breakpoints(cmd_arg_t *argv);
     
    182182        for (i=0; i<BKPOINTS_MAX; i++)
    183183                breakpoints[i].address = NULL;
    184         spinlock_initialize(&bkpoint_lock, "breakpoint_lock");
    185184       
    186185        cmd_initialize(&pbkpt_info);
Note: See TracChangeset for help on using the changeset viewer.