diff --git a/OsmoCore.st b/OsmoCore.st new file mode 100644 index 0000000..96b06ee --- /dev/null +++ b/OsmoCore.st @@ -0,0 +1,26 @@ +"Copyright placeholder" + +Object subclass: OSMOCore [ + OSMOCore class >> initialize [ + DLD addLibrary: 'libosmocore.so.0'. + ObjectMemory addDependent: self. + ] + + OSMOCore class >> update: aSymbol [ + "Check if the BSC Symbols are there again?" + ] + + OSMOCore class >> bsc_select_main: poll [ + + ] + OSMOCore class >> processEvents [ + self bsc_select_main: 1 + ] +] + +Eval [ + OSMOCore initialize. + + "TODO: start process that is going to poll... but make sure it is + only one doing that..." +]