Changeset 1:00e7af4d1367 in xplcommon


Ignore:
Timestamp:
12/27/12 12:15:49 (11 years ago)
Author:
István Váradi <ivaradi@…>
Branch:
default
hg-Phase:
(<MercurialRepository 2 'hg:/home/ivaradi/xplane/hg/xplcommon' '/'>, 'public')
Message:

Implemented basic event waiting infrastructure

Files:
4 added
10 edited

Legend:

Unmodified
Added
Removed
  • COPYING

    r0 r1  
    1 Copyright (c) The Regents of the University of California.
     1Copyright (c) 2013, István Váradi
    22All rights reserved.
    33
  • configure.ac

    r0 r1  
    99
    1010AC_CHECK_HEADERS([pthread.h])
     11AC_CHECK_HEADERS([poll.h])
    1112AC_CHECK_HEADERS([windows.h])
    1213
  • src/xplcommon/.copyright

    r0 r1  
    1 // Copyright (c) 2013, István Váradi
    2 // All rights reserved.
    3 
    41// Redistribution and use in source and binary forms, with or without
    52// modification, are permitted provided that the following conditions are met:
  • src/xplcommon/Makefile.am

    r0 r1  
    22
    33libxplcommon_la_SOURCES=\
    4         POSIXThread.cc  \
    5         Win32Thread.cc
     4        POSIXThread.cc          \
     5        Win32Thread.cc          \
     6        POSIXWaitable.cc        \
     7        POSIXWaiter.cc
    68
    79include_xplcommondir=$(includedir)/xplcommon
    810include_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
    32
    43// This file is part of libxplcommon, a common utility library for
    54// development related to X-Plane
    6 
    7 // Copyright (c) 2013, István Váradi
    8 // All rights reserved.
    95
    106// 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
    32
    43// This file is part of libxplcommon, a common utility library for
    54// development related to X-Plane
    6 
    7 // Copyright (c) 2013, István Váradi
    8 // All rights reserved.
    95
    106// Redistribution and use in source and binary forms, with or without
     
    3935
    4036#ifdef HAVE_PTHREAD_H
     37
    4138//------------------------------------------------------------------------------
    4239
  • src/xplcommon/Thread.h

    r0 r1  
    1 // Copyright (c) 2012 by István Váradi
     1// Copyright (c) 2013 by István Váradi
    22
    33// This file is part of libxplcommon, a common utility library for
    44// development related to X-Plane
    5 
    6 // Copyright (c) 2013, István Váradi
    7 // All rights reserved.
    85
    96// 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
    32
    43// This file is part of libxplcommon, a common utility library for
    54// development related to X-Plane
    6 
    7 // Copyright (c) 2013, István Váradi
    8 // All rights reserved.
    95
    106// 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
    42
    53// This file is part of libxplcommon, a common utility library for
    64// development related to X-Plane
    7 
    8 // Copyright (c) 2013, István Váradi
    9 // All rights reserved.
    105
    116// Redistribution and use in source and binary forms, with or without
  • src/xplcommon/config.h.in

    r0 r1  
    99/* Define to 1 if you have the <memory.h> header file. */
    1010#undef HAVE_MEMORY_H
     11
     12/* Define to 1 if you have the <poll.h> header file. */
     13#undef HAVE_POLL_H
    1114
    1215/* Define to 1 if you have the <pthread.h> header file. */
Note: See TracChangeset for help on using the changeset viewer.