Sha256: 39f7b29fb3a2c1f48183f68427badb2e4695a6f73ff70641f24fb54a8bdd7e5c

Contents?: true

Size: 535 Bytes

Versions: 8

Compression:

Stored size: 535 Bytes

Contents

#include "polyphony.h"

void Init_Fiber();
void Init_Polyphony();
void Init_Backend();
void Init_Queue();
void Init_Event();
void Init_Runqueue();
void Init_SocketExtensions();
void Init_Thread();
void Init_Tracing();

#ifdef POLYPHONY_PLAYGROUND
extern void playground();
#endif

void Init_polyphony_ext() {
  Init_Polyphony();

  Init_Backend();
  Init_Queue();
  Init_Event();
  Init_Runqueue();
  Init_Fiber();
  Init_Thread();
  Init_Tracing();

  Init_SocketExtensions();

  #ifdef POLYPHONY_PLAYGROUND
  playground();
  #endif
}

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
polyphony-0.58 ext/polyphony/polyphony_ext.c
polyphony-0.57.0 ext/polyphony/polyphony_ext.c
polyphony-0.56.0 ext/polyphony/polyphony_ext.c
polyphony-0.55.0 ext/polyphony/polyphony_ext.c
polyphony-0.54.0 ext/polyphony/polyphony_ext.c
polyphony-0.53.2 ext/polyphony/polyphony_ext.c
polyphony-0.53.1 ext/polyphony/polyphony_ext.c
polyphony-0.53.0 ext/polyphony/polyphony_ext.c