Deleted Added
sdiff udiff text old ( 12839:45ad57043567 ) new ( 12879:3d1110d82f87 )
full compact
1/*
2 * Copyright 2018 Google, Inc.
3 *
4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are
6 * met: redistributions of source code must retain the above copyright
7 * notice, this list of conditions and the following disclaimer;
8 * redistributions in binary form must reproduce the above copyright

--- 91 unchanged lines hidden (view full) ---

100 sc_spawn_warn_unimpl(__PRETTY_FUNCTION__);
101 return sc_process_handle();
102}
103
104#define sc_bind boost::bind
105#define sc_ref(r) boost::ref(r)
106#define sc_cref(r) boost::cref(r)
107
108#define SC_FORK \
109{ \
110 ::sc_core::sc_process_handle forkees[] = {
111
112#define SC_JOIN \
113 }; /* TODO wait for the forkees. */ \
114}
115
116// Non-standard
117#define SC_CJOIN SC_JOIN
118
119} // namespace sc_core
120
121namespace sc_unnamed
122{
123
124typedef int ImplementationDefined;
125extern ImplementationDefined _1;
126extern ImplementationDefined _2;
127extern ImplementationDefined _3;
128extern ImplementationDefined _4;
129extern ImplementationDefined _5;
130extern ImplementationDefined _6;
131extern ImplementationDefined _7;
132extern ImplementationDefined _8;
133extern ImplementationDefined _9;
134
135} // namespace sc_unnamed
136
137#endif //__SYSTEMC_EXT_CORE_SC_SPAWN_HH__