Changeset 0dc2fec in mainline for uspace/app


Ignore:
Timestamp:
2016-05-22T19:19:43Z (10 years ago)
Author:
Jiri Svoboda <jiri@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
b272c67a
Parents:
153c7a29 (diff), af2254ec (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
Message:

Merge mainline changes

Location:
uspace/app
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • uspace/app/barber/Makefile

    r153c7a29 r0dc2fec  
    8585include $(USPACE_PREFIX)/Makefile.common
    8686
    87 images.c images.h: $(IMAGES)
    88         $(ROOT_PATH)/tools/mkarray.py images COMPOSITOR_IMAGES $^
     87image%.c image%.h: $(IMAGES)
     88        $(ROOT_PATH)/tools/mkarray.py images COMPOSITOR_IMAGES $(IMAGES)
  • uspace/app/rcubench/Makefile

    r153c7a29 r0dc2fec  
    2929USPACE_PREFIX = ../..
    3030
    31 LIBS = $(LIBURCU_PREFIX)/liburcu.a
    32 
    33 EXTRA_CFLAGS += -I$(LIBURCU_PREFIX)
    34        
    3531BINARY = rcubench
    3632
  • uspace/app/rcutest/Makefile

    r153c7a29 r0dc2fec  
    2929USPACE_PREFIX = ../..
    3030
    31 LIBS = $(LIBURCU_PREFIX)/liburcu.a
    32 
    33 EXTRA_CFLAGS += -I$(LIBURCU_PREFIX)
    34        
    3531BINARY = rcutest
    3632
  • uspace/app/sbi/src/bigint.c

    r153c7a29 r0dc2fec  
    379379        printf("Convert bigint to string.\n");
    380380#endif
    381         assert(BIGINT_BASE >= 10);
     381        static_assert(BIGINT_BASE >= 10);
    382382
    383383        /* Compute number of characters. */
  • uspace/app/tetris/tetris.c

    r153c7a29 r0dc2fec  
    5151 */
    5252
    53 static const char copyright[] =
     53static volatile const char copyright[] =
    5454        "@(#) Copyright (c) 1992, 1993\n"
    5555        "\tThe Regents of the University of California.  All rights reserved.\n";
Note: See TracChangeset for help on using the changeset viewer.