pthread.h (585B)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 | /* Relacy Race Detector * Copyright (c) 2008-2010, Dmitry S. Vyukov * All rights reserved. * This software is provided AS-IS with no warranty, either express or implied. * This software is distributed under a license and may not be copied, * modified or distributed except as expressly authorized under the * terms of the license contained in the file LICENSE.TXT in this distribution. */ #ifndef RL_PTHREAD_IFACE_HPP #define RL_PTHREAD_IFACE_HPP #ifdef _MSC_VER # pragma once #endif #include "relacy.hpp" #include "stdlib/pthread.hpp" #endif |