Replace assert() -> BT_ASSERT() and some preconditions with BT_ASSERT_PRE()
[babeltrace.git] / bindings / python / bt2 / bt2 / native_bttrace.i
index 3f78f450b446834c126345765fac28678775fddd..6210423509656eabd6e878521e2d9f6fa05d648c 100644 (file)
@@ -93,14 +93,14 @@ void trace_is_static_listener(struct bt_trace *trace, void *py_callable)
        }
 
        py_res = PyObject_CallFunction(py_callable, "(O)", py_trace_ptr);
-       assert(py_res == Py_None);
+       BT_ASSERT(py_res == Py_None);
        Py_DECREF(py_trace_ptr);
        Py_DECREF(py_res);
 }
 
 void trace_listener_removed(struct bt_trace *trace, void *py_callable)
 {
-       assert(py_callable);
+       BT_ASSERT(py_callable);
        Py_DECREF(py_callable);
 }
 
@@ -110,8 +110,8 @@ static int bt_py3_trace_add_is_staitc_listener(unsigned long long trace_addr,
        struct bt_trace *trace = (void *) trace_addr;
        int ret = 0;
 
-       assert(trace);
-       assert(py_callable);
+       BT_ASSERT(trace);
+       BT_ASSERT(py_callable);
        ret = bt_trace_add_is_static_listener(trace,
                trace_is_static_listener, trace_listener_removed, py_callable);
        if (ret >= 0) {
This page took 0.023648 seconds and 4 git commands to generate.