https://github.com/pupil-labs/pupil
Raw File
Tip revision: 44b9a65d191227e9f970fb9581f4ed132d1cfdbf authored by Moritz Kassner on 02 July 2016, 16:32:43 UTC
An alternative solution to the `socket random port binding in thread` problem. Create sockets in the main thread and pass as args to other threads. Never use the sockets in the main thread.
Tip revision: 44b9a65
.gitignore
# OS generated files #
.DS_Store
Thumbs.db

# python generated files #
*.pyc
*.pstats

# binaries #
*.so

#cython build files
*.c

# user generated files will be ignored if in directory named 'recordings...' #
# user generated settings files will also be ignored #
recordings/
capture_settings/
service_settings/
player_settings/
settings/
*.db
*.npy
*.png
*.log


# IDE generated files #
.floo
.flooignore
*.sublime-project
*.sublime-workspace

#directory for test file will be ignored
Pupil_Test_Files
detector_2d.cpp
detector_3d.cpp
CircleGoodnessTest.cpp
SphereCircleTest.cpp
*.mp4
*.mkv
back to top