File tree 1 file changed +2
-2
lines changed
org.lflang/src/lib/Python
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -99,7 +99,7 @@ static PyObject* py_SET(PyObject *self, PyObject *args) {
99
99
/**
100
100
* Prototype for the internal API. @see reactor_common.c
101
101
**/
102
- lf_token_t * __initialize_token_with_value (lf_token_t * token , void * value , size_t length );
102
+ lf_token_t * _lf_initialize_token_with_value (lf_token_t * token , void * value , size_t length );
103
103
104
104
/**
105
105
* Prototype for API function. @see lib/core/reactor_common.c
@@ -141,7 +141,7 @@ static PyObject* py_schedule(PyObject *self, PyObject *args) {
141
141
// DEBUG: adjust the element_size (might not be necessary)
142
142
trigger -> token -> element_size = sizeof (PyObject * );
143
143
trigger -> element_size = sizeof (PyObject * );
144
- t = __initialize_token_with_value (trigger -> token , value , 1 );
144
+ t = _lf_initialize_token_with_value (trigger -> token , value , 1 );
145
145
146
146
// Also give the new value back to the Python action itself
147
147
Py_INCREF (value );
You can’t perform that action at this time.
0 commit comments