PyThread_acquire_lock method

int PyThread_acquire_lock(
  1. PyThread_type_lock arg0,
  2. int arg1
)

Implementation

int PyThread_acquire_lock(
  PyThread_type_lock arg0,
  int arg1,
) {
  return _PyThread_acquire_lock(
    arg0,
    arg1,
  );
}