]> AND Public Git Repository - simgrid.git/blobdiff - include/simgrid/simix.h
Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
cosmetics in teshsuite
[simgrid.git] / include / simgrid / simix.h
index 4d766f254fc258538a8fe228ccfe11fb5dc36ac8..458a8ea8a1182cf12f3ee8f0a690f82241f757ad 100644 (file)
 #ifdef __cplusplus
 
 namespace simgrid {
+namespace kernel {
+namespace context {
+  class Context;
+  class ContextFactory;
+}}
+
 namespace simix {
 
   /** @brief Process datatype
@@ -28,16 +34,14 @@ namespace simix {
       data</em>, executing in a <em>location</em>.
       \see m_process_management
     @{ */
-  class Process;
-  class Context;
-  class ContextFactory;
+  class ActorImpl;
   class Mutex;
   class Mailbox;
 }
 }
 
-typedef simgrid::simix::Context *smx_context_t;
-typedef simgrid::simix::Process *smx_process_t;
+typedef simgrid::kernel::context::Context *smx_context_t;
+typedef simgrid::simix::ActorImpl *smx_process_t;
 typedef simgrid::simix::Mutex   *smx_mutex_t;
 typedef simgrid::simix::Mailbox *smx_mailbox_t;