Changeset 1:00e7af4d1367 in xplcommon
- Timestamp:
- 12/27/12 12:15:49 (12 years ago)
- Branch:
- default
- Phase:
- public
- Files:
-
- 4 added
- 10 edited
Legend:
- Unmodified
- Added
- Removed
-
COPYING
r0 r1 1 Copyright (c) The Regents of the University of California.1 Copyright (c) 2013, István Váradi 2 2 All rights reserved. 3 3 -
configure.ac
r0 r1 9 9 10 10 AC_CHECK_HEADERS([pthread.h]) 11 AC_CHECK_HEADERS([poll.h]) 11 12 AC_CHECK_HEADERS([windows.h]) 12 13 -
src/xplcommon/.copyright
r0 r1 1 // Copyright (c) 2013, István Váradi2 // All rights reserved.3 4 1 // Redistribution and use in source and binary forms, with or without 5 2 // modification, are permitted provided that the following conditions are met: -
src/xplcommon/Makefile.am
r0 r1 2 2 3 3 libxplcommon_la_SOURCES=\ 4 POSIXThread.cc \ 5 Win32Thread.cc 4 POSIXThread.cc \ 5 Win32Thread.cc \ 6 POSIXWaitable.cc \ 7 POSIXWaiter.cc 6 8 7 9 include_xplcommondir=$(includedir)/xplcommon 8 10 include_xplcommon_HEADERS=\ 9 POSIXThread.h \ 10 Win32Thread.h \ 11 Thread.h 11 POSIXThread.h \ 12 Win32Thread.h \ 13 Thread.h \ 14 POSIXWaitable.h \ 15 POSIXWaiter.h -
src/xplcommon/POSIXThread.cc
r0 r1 1 // -*- coding: utf-8 -*- 2 // Copyright (c) 2012 by István Váradi 1 // Copyright (c) 2013 by István Váradi 3 2 4 3 // This file is part of libxplcommon, a common utility library for 5 4 // development related to X-Plane 6 7 // Copyright (c) 2013, István Váradi8 // All rights reserved.9 5 10 6 // Redistribution and use in source and binary forms, with or without -
src/xplcommon/POSIXThread.h
r0 r1 1 // -*- coding: utf-8 -*- 2 // Copyright (c) 2012 by István Váradi 1 // Copyright (c) 2013 by István Váradi 3 2 4 3 // This file is part of libxplcommon, a common utility library for 5 4 // development related to X-Plane 6 7 // Copyright (c) 2013, István Váradi8 // All rights reserved.9 5 10 6 // Redistribution and use in source and binary forms, with or without … … 39 35 40 36 #ifdef HAVE_PTHREAD_H 37 41 38 //------------------------------------------------------------------------------ 42 39 -
src/xplcommon/Thread.h
r0 r1 1 // Copyright (c) 201 2by István Váradi1 // Copyright (c) 2013 by István Váradi 2 2 3 3 // This file is part of libxplcommon, a common utility library for 4 4 // development related to X-Plane 5 6 // Copyright (c) 2013, István Váradi7 // All rights reserved.8 5 9 6 // Redistribution and use in source and binary forms, with or without -
src/xplcommon/Win32Thread.cc
r0 r1 1 // -*- coding: utf-8 -*- 2 // Copyright (c) 2012 by István Váradi 1 // Copyright (c) 2013 by István Váradi 3 2 4 3 // This file is part of libxplcommon, a common utility library for 5 4 // development related to X-Plane 6 7 // Copyright (c) 2013, István Váradi8 // All rights reserved.9 5 10 6 // Redistribution and use in source and binary forms, with or without -
src/xplcommon/Win32Thread.h
r0 r1 1 // -*- coding: utf-8 -*- 2 3 // Copyright (c) 2012 by István Váradi 1 // Copyright (c) 2013 by István Váradi 4 2 5 3 // This file is part of libxplcommon, a common utility library for 6 4 // development related to X-Plane 7 8 // Copyright (c) 2013, István Váradi9 // All rights reserved.10 5 11 6 // Redistribution and use in source and binary forms, with or without -
src/xplcommon/config.h.in
r0 r1 9 9 /* Define to 1 if you have the <memory.h> header file. */ 10 10 #undef HAVE_MEMORY_H 11 12 /* Define to 1 if you have the <poll.h> header file. */ 13 #undef HAVE_POLL_H 11 14 12 15 /* Define to 1 if you have the <pthread.h> header file. */
Note:
See TracChangeset
for help on using the changeset viewer.