Changes in / [1a5fe4f:ef4218f] in mainline


Ignore:
Files:
2 deleted
6 edited

Legend:

Unmodified
Added
Removed
  • kernel/generic/src/security/perm.c

    r1a5fe4f ref4218f  
    131131         * doesn't have PERM_PERM.
    132132         */
    133         irq_spinlock_lock(&TASK->lock, false);
     133        irq_spinlock_unlock(&TASK->lock, false);
    134134
    135135        if ((!(TASK->perms & PERM_PERM)) || (task != TASK)) {
  • tools/xcw/bin/helenos-bld-config

    r1a5fe4f ref4218f  
    4747case ".$1" in
    4848(.--cc) extract_field "CC" "$MAKEFILE_COMMON";;
    49 (.--ld) extract_field "LD" "$MAKEFILE_COMMON";;
    5049(.--uarch) extract_field "UARCH" "$MAKEFILE_CONFIG";;
    5150(.--endian)
  • tools/xcw/demo/Makefile

    r1a5fe4f ref4218f  
    4343
    4444CC = helenos-cc
    45 LD = helenos-ld
    46 CFLAGS = -std=gnu11 -Wall `helenos-pkg-config --cflags libgui libdraw libmath` \
    47     -D_HELENOS_SOURCE
     45CFLAGS = -std=gnu99 -Wall `helenos-pkg-config --cflags libgui libdraw libmath`
    4846LIBS = `helenos-pkg-config --libs libgui libdraw libmath`
    4947output = viewer
     
    5755
    5856$(output): $(objects)
    59         $(LD) -o $@ $^ $(LIBS)
     57        $(CC) -o $@ $^ $(LIBS)
    6058
    6159%.o: %.c
  • uspace/lib/c/Makefile

    r1a5fe4f ref4218f  
    194194        test/stdio/scanf.c \
    195195        test/odict.c \
    196         test/perm.c \
    197196        test/qsort.c \
    198197        test/sprintf.c \
  • uspace/lib/c/include/string.h

    r1a5fe4f ref4218f  
    3636#define LIBC_STRING_H_
    3737
    38 #if defined(_HELENOS_SOURCE) && !defined(_REALLY_WANT_STRING_H)
     38#ifdef _HELENOS_SOURCE
    3939#error Please use str.h and mem.h instead
    4040#endif
  • uspace/lib/c/test/main.c

    r1a5fe4f ref4218f  
    3737PCUT_IMPORT(mem);
    3838PCUT_IMPORT(odict);
    39 PCUT_IMPORT(perm);
    4039PCUT_IMPORT(qsort);
    4140PCUT_IMPORT(scanf);
Note: See TracChangeset for help on using the changeset viewer.