Skip to content

The runtime system (RTS) library for the coordination language Streamix.

License

Notifications You must be signed in to change notification settings

humdek-unibe-ch/smx-core-rts

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Streamix RTS smxrts

The runtime system (RTS) library for the coordination language Streamix. This library is used by any Streamix box which together with this runtime system may form a Streamix application.

In short, the runtime system spawns box instances as threads and manages the communication amongst the box instances.

Installation

The release page offers pre-compiled debian packages which can be installed through command line.

Building

To build the RTS from scratch run the following commands:

make
sudo make install

Note that time-triggered nets are executed with RT-Tasks.

Dependencies

  • smx-dep-zlog This library wraps the publicly available zlog library in order to facilitate installing processes. Note that the zlog library was altered slighly to accommodate for a potential priority-inversion problem when using RT threads.

  • libbson

    sudo apt install libbson-dev
    
  • pthread

    sudo apt install libpthread-stubs0-dev
    
  • lttng

    sudo apt-get install lttng-tools
    sudo apt-get install lttng-modules-dkms
    sudo apt-get install liblttng-ust-dev
    

Streamix Applications

Look for repositories with the name prefix smx-app- for Streamix applications which were built with this runtime system. Try this link for a list of available Streamix apps.