Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • libcfa/src/concurrency/clib/cfathread.cfa

    rc715e5f r75965a6  
    237237
    238238typedef ThreadCancelled(cfathread_object) cfathread_exception;
    239 typedef vtable(ThreadCancelled(cfathread_object)) cfathread_vtable;
     239typedef ThreadCancelled_vtable(cfathread_object) cfathread_vtable;
    240240
    241241void defaultResumptionHandler(ThreadCancelled(cfathread_object) & except) {
     
    283283
    284284typedef ThreadCancelled(__cfainit) __cfainit_exception;
    285 typedef vtable(ThreadCancelled(__cfainit)) __cfainit_vtable;
     285typedef ThreadCancelled_vtable(__cfainit) __cfainit_vtable;
    286286
    287287void defaultResumptionHandler(ThreadCancelled(__cfainit) & except) {
     
    326326}
    327327
    328 #pragma GCC visibility push(default)
    329 
    330328//================================================================================
    331329// Main Api
    332330extern "C" {
    333         int cfathread_cluster_create(cfathread_cluster_t * cl) __attribute__((nonnull(1))) libcfa_public {
     331        int cfathread_cluster_create(cfathread_cluster_t * cl) __attribute__((nonnull(1))) {
    334332                *cl = new();
    335333                return 0;
    336334        }
    337335
    338         cfathread_cluster_t cfathread_cluster_self(void) libcfa_public {
     336        cfathread_cluster_t cfathread_cluster_self(void) {
    339337                return active_cluster();
    340338        }
    341339
    342         int cfathread_cluster_print_stats( cfathread_cluster_t cl ) libcfa_public {
     340        int cfathread_cluster_print_stats( cfathread_cluster_t cl ) {
    343341                #if !defined(__CFA_NO_STATISTICS__)
    344342                        print_stats_at_exit( *cl, CFA_STATS_READY_Q | CFA_STATS_IO );
Note: See TracChangeset for help on using the changeset viewer.