source: rtems/testsuites/psxtests/psxconcurrency01/Makefile.am @ 8228548

5
Last change on this file since 8228548 was 8228548, checked in by Joel Sherrill <joel@…>, on 02/19/16 at 22:00:48

Add pthread_getconcurrency() and pthread_setconcurrency()

This is the very simple implementation specified by the Open Group
for implementations with 1:1 kernel thread to user thread mappings.

http://pubs.opengroup.org/onlinepubs/9699919799/functions/pthread_getconcurrency.html

updates #2680.

  • Property mode set to 100644
File size: 677 bytes
Line 
1
2rtems_tests_PROGRAMS = psxconcurrency01
3psxconcurrency01_SOURCES = init.c ../include/pmacros.h
4
5dist_rtems_tests_DATA = psxconcurrency01.scn
6dist_rtems_tests_DATA += psxconcurrency01.doc
7
8include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
9include $(top_srcdir)/../automake/compile.am
10include $(top_srcdir)/../automake/leaf.am
11
12
13AM_CPPFLAGS += -I$(top_srcdir)/include
14AM_CPPFLAGS += -I$(top_srcdir)/../support/include
15
16LINK_OBJS = $(psxconcurrency01_OBJECTS)
17LINK_LIBS = $(psxconcurrency01_LDLIBS)
18
19psxconcurrency01$(EXEEXT): $(psxconcurrency01_OBJECTS) $(psxconcurrency01_DEPENDENCIES)
20        @rm -f psxconcurrency01$(EXEEXT)
21        $(make-exe)
22
23include $(top_srcdir)/../automake/local.am
Note: See TracBrowser for help on using the repository browser.