Files
pytorch/torch/lib/libshm/alloc_info.h
Sam Gross 77fbc12f23 Fix some deadlocks when torch_shm_manager is not found (#1030)
- Add additional timeouts to test_multiprocessing to reduce chances of
   hanging indefintely on failure
 - Add missing header guards
 - Fix typo
 - Check that torch_shm_manager exists in torch/__init__.py
2017-03-17 18:28:39 -04:00

10 lines
104 B
C

#pragma once
#include <unistd.h>
struct AllocInfo {
pid_t pid;
char free;
char filename[60];
};