munmap function

void munmap(
  1. Pointer<Void> addr,
  2. int len
)

Implementation

void munmap(Pointer<Void> addr, int len) {
  final result = _munmap(addr, len);
  if (result != 0) {
    throw Exception('munmap : ${lastError()}');
  }
}