Changeset a2a71b5 in rtems


Ignore:
Timestamp:
09/14/18 14:00:45 (6 years ago)
Author:
Sebastian Huber <sebastian.huber@…>
Branches:
5, master
Children:
028b0ce
Parents:
5079524
git-author:
Sebastian Huber <sebastian.huber@…> (09/14/18 14:00:45)
git-committer:
Sebastian Huber <sebastian.huber@…> (10/10/18 05:54:14)
Message:

build: Merge libstdthreads/Makefile.am

Location:
cpukit
Files:
1 deleted
5 edited

Legend:

Unmodified
Added
Removed
  • cpukit/Makefile.am

    r5079524 ra2a71b5  
    365365libcpukit_a_SOURCES += libmd/md4.c
    366366libcpukit_a_SOURCES += libmd/md5.c
     367libcpukit_a_SOURCES += libstdthreads/call_once.c
     368libcpukit_a_SOURCES += libstdthreads/cnd.c
     369libcpukit_a_SOURCES += libstdthreads/mtx.c
     370libcpukit_a_SOURCES += libstdthreads/tss.c
    367371libcpukit_a_SOURCES += sapi/src/chainappendnotify.c
    368372libcpukit_a_SOURCES += sapi/src/chaingetnotify.c
     
    402406libcpukit_a_SOURCES += sapi/src/tcsimpleinstall.c
    403407libcpukit_a_SOURCES += sapi/src/version.c
     408
     409if HAS_PTHREADS
     410
     411libcpukit_a_SOURCES += libstdthreads/thrd.c
     412
     413endif
    404414
    405415if LIBDL
     
    609619_SUBDIRS += libnetworking
    610620_SUBDIRS += libmisc
    611 _SUBDIRS += libstdthreads
    612621_SUBDIRS += wrapup
    613622
  • cpukit/configure.ac

    r5079524 ra2a71b5  
    500500libnetworking/Makefile
    501501libmisc/Makefile
    502 libstdthreads/Makefile
    503502zlib/Makefile
    504503telnetd/Makefile
  • cpukit/libstdthreads/cnd.c

    r5079524 ra2a71b5  
    6363
    6464int
    65 cnd_timedwait(cnd_t *restrict cond, mtx_t *restrict mtx,
    66     const struct timespec *restrict ts)
     65cnd_timedwait(cnd_t *__restrict cond, mtx_t *__restrict mtx,
     66    const struct timespec *__restrict ts)
    6767{
    6868
  • cpukit/libstdthreads/mtx.c

    r5079524 ra2a71b5  
    5757
    5858int
    59 mtx_timedlock(mtx_t *restrict mtx, const struct timespec *restrict ts)
     59mtx_timedlock(mtx_t *__restrict mtx, const struct timespec *__restrict ts)
    6060{
    6161
  • cpukit/wrapup/Makefile.am

    r5079524 ra2a71b5  
    1919TMP_LIBS += ../rtems/librtems.a
    2020TMP_LIBS += ../posix/libposix.a
    21 
    22 TMP_LIBS += ../libstdthreads/libstdthreads.a
    2321
    2422TMP_LIBS += ../libmisc/libmonitor.a
Note: See TracChangeset for help on using the changeset viewer.