Skip to content

Commit

Permalink
- fixes in the Linux/Mac/Solaris/*nix part
Browse files Browse the repository at this point in the history
git-svn-id: https://openmodelica.org/svn/OpenModelica/trunk@3667 f25d12d1-65f4-0310-ae8a-bbce733d8d8e
  • Loading branch information
adrpo committed Oct 2, 2008
1 parent 0b0be78 commit 706096c
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions Compiler/runtime/systemimpl.c
Expand Up @@ -2293,6 +2293,24 @@ RML_BEGIN_LABEL(System__readPtolemyplotDataset)
}
RML_END_LABEL

RML_BEGIN_LABEL(System__readPtolemyplotVariables)
{
rml_sint_t i,size;
char* filename = RML_STRINGDATA(rmlA0);
char* visvars = RML_STRINGDATA(rmlA1);
void* p;

rmlA0 = (void*)read_ptolemy_variables(filename, visvars);
if (rmlA0 == NULL) {
RML_TAILCALLK(rmlFC);
}

// rml_prim_once(Values__reverseMatrix);

RML_TAILCALLK(rmlSC);
}
RML_END_LABEL

RML_BEGIN_LABEL(System__readPtolemyplotDatasetSize)
{
int size;
Expand Down

0 comments on commit 706096c

Please sign in to comment.