Changeset c2b9f21 for src


Ignore:
Timestamp:
Nov 30, 2017, 2:12:51 PM (7 years ago)
Author:
Thierry Delisle <tdelisle@…>
Branches:
ADT, aaron-thesis, arm-eh, ast-experimental, cleanup-dtors, deferred_resn, demangler, enum, forall-pointer-decay, jacob/cs343-translation, jenkins-sandbox, master, new-ast, new-ast-unique-expr, new-env, no_list, persistent-indexer, pthread-emulation, qualifiedEnum, resolv-new, with_gc
Children:
3d560060
Parents:
35bae526
Message:

Removed libhdr, moved its content to bits

Location:
src/libcfa
Files:
2 deleted
16 edited
1 moved

Legend:

Unmodified
Added
Removed
  • src/libcfa/Makefile.am

    r35bae526 rc2b9f21  
    100100        math                            \
    101101        gmp                             \
     102        bits/align.h            \
    102103        bits/containers.h               \
    103104        bits/defs.h             \
    104105        bits/debug.h            \
    105106        bits/locks.h            \
    106         concurrency/invoke.h    \
    107         libhdr.h                        \
    108         libhdr/libalign.h       \
    109         libhdr/libtools.h
     107        concurrency/invoke.h
    110108
    111109CLEANFILES = libcfa-prelude.c
  • src/libcfa/Makefile.in

    r35bae526 rc2b9f21  
    263263        containers/result containers/vector concurrency/coroutine \
    264264        concurrency/thread concurrency/kernel concurrency/monitor \
    265         ${shell echo stdhdr/*} math gmp bits/containers.h bits/defs.h \
    266         bits/debug.h bits/locks.h concurrency/invoke.h libhdr.h \
    267         libhdr/libalign.h libhdr/libtools.h
     265        ${shell echo stdhdr/*} math gmp bits/align.h bits/containers.h \
     266        bits/defs.h bits/debug.h bits/locks.h concurrency/invoke.h
    268267HEADERS = $(nobase_cfa_include_HEADERS)
    269268am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP)
     
    436435        math                            \
    437436        gmp                             \
     437        bits/align.h            \
    438438        bits/containers.h               \
    439439        bits/defs.h             \
    440440        bits/debug.h            \
    441441        bits/locks.h            \
    442         concurrency/invoke.h    \
    443         libhdr.h                        \
    444         libhdr/libalign.h       \
    445         libhdr/libtools.h
     442        concurrency/invoke.h
    446443
    447444CLEANFILES = libcfa-prelude.c
  • src/libcfa/bits/align.h

    r35bae526 rc2b9f21  
    55// file "LICENCE" distributed with Cforall.
    66//
    7 // libdebug.h --
     7// align.h --
    88//
    99// Author           : Thierry Delisle
  • src/libcfa/bits/containers.h

    r35bae526 rc2b9f21  
    1515#pragma once
    1616
     17#include "bits/align.h"
    1718#include "bits/defs.h"
    18 #include "libhdr.h"
    1919
    2020//-----------------------------------------------------------------------------
  • src/libcfa/bits/debug.c

    r35bae526 rc2b9f21  
    55// file "LICENCE" distributed with Cforall.
    66//
    7 // libdebug.c --
     7// debug.c --
    88//
    99// Author           : Thierry Delisle
  • src/libcfa/bits/debug.h

    r35bae526 rc2b9f21  
    55// file "LICENCE" distributed with Cforall.
    66//
    7 // libdebug.h --
     7// debug.h --
    88//
    99// Author           : Thierry Delisle
  • src/libcfa/bits/defs.h

    r35bae526 rc2b9f21  
    3232#define __cfa_anonymous_object __cfa_anonymous_object
    3333#endif
     34
     35#ifdef __cforall
     36extern "C" {
     37#endif
     38void abortf( const char fmt[], ... ) __attribute__ ((__nothrow__, __leaf__, __noreturn__));
     39#ifdef __cforall
     40}
     41#endif
  • src/libcfa/bits/locks.h

    r35bae526 rc2b9f21  
    1818#include "bits/debug.h"
    1919#include "bits/defs.h"
    20 
    21 #include "libhdr.h"
    2220
    2321// pause to prevent excess processor bus usage
  • src/libcfa/concurrency/alarm.c

    r35bae526 rc2b9f21  
    2222#include <sys/time.h>
    2323}
    24 
    25 #include "libhdr.h"
    2624
    2725#include "alarm.h"
  • src/libcfa/concurrency/coroutine.c

    r35bae526 rc2b9f21  
    2929#define __CFA_INVOKE_PRIVATE__
    3030#include "invoke.h"
    31 
    3231
    3332//-----------------------------------------------------------------------------
  • src/libcfa/concurrency/invoke.c

    r35bae526 rc2b9f21  
    1818#include <stdio.h>
    1919
    20 #include "libhdr.h"
    2120#include "invoke.h"
    2221
  • src/libcfa/concurrency/kernel.c

    r35bae526 rc2b9f21  
    1313// Update Count     : 2
    1414//
    15 
    16 #include "libhdr.h"
    1715
    1816//C Includes
  • src/libcfa/concurrency/kernel_private.h

    r35bae526 rc2b9f21  
    1515
    1616#pragma once
    17 
    18 #include "libhdr.h"
    1917
    2018#include "kernel"
  • src/libcfa/concurrency/monitor.c

    r35bae526 rc2b9f21  
    1919#include <inttypes.h>
    2020
    21 #include "libhdr.h"
    2221#include "kernel_private.h"
    2322
  • src/libcfa/concurrency/preemption.c

    r35bae526 rc2b9f21  
    1414//
    1515
    16 #include "libhdr.h"
    1716#include "preemption.h"
    1817
  • src/libcfa/concurrency/thread.c

    r35bae526 rc2b9f21  
    1717
    1818#include "kernel_private.h"
    19 #include "libhdr.h"
    2019
    2120#define __CFA_INVOKE_PRIVATE__
  • src/libcfa/interpose.c

    r35bae526 rc2b9f21  
    2525
    2626#include "bits/debug.h"
    27 #include "libhdr/libtools.h"
     27#include "bits/defs.h"
    2828#include "startup.h"
    2929
Note: See TracChangeset for help on using the changeset viewer.