WinCE-PORT
上传用户:zhenyu
上传日期:2022-04-24
资源大小:268k
文件大小:8k
源码类别:

视频捕捉/采集

开发平台:

Visual C++

  1. NOTE: The comments in this file relate to the original WinCE port
  2. done by Tristan Savatier. The semaphore routines have been 
  3. completely rewritten since (2005-04-25), having been progressively
  4. broken more and more by changes to the library. All of the semaphore
  5. routines implemented for W9x/WNT/2000 and up should now also work for
  6. WinCE. Also, pthread_mutex_timedlock should now work. [RPJ]
  7. ----
  8. Some interesting news:
  9. I have been able to port pthread-win32 to Windows-CE,
  10. which uses a subset of the WIN32 API.
  11. Since we intend to keep using pthread-win32 for our
  12. Commercial WinCE developments, I would be very interested
  13. if WinCE support could be added to the main source tree
  14. of pthread-win32.  Also, I would like to be credited
  15. for this port :-)
  16. Now, here is the story...
  17. The port was performed and tested on a Casio "Cassiopeia"
  18. PalmSize PC, which runs a MIP processor.  The OS in the
  19. Casio is WinCE version 2.11, but I used VC++ 6.0 with
  20. the WinCE SDK for version 2.01.
  21. I used pthread-win32 to port a heavily multithreaded
  22. commercial application (real-time MPEG video player)
  23. from Linux to WinCE.  I consider the changes that
  24. I have done to be quite well tested.
  25. Overall the modifications that we had to do are minor.
  26. The WinCE port were based on pthread-win32-snap-1999-05-30,
  27. but I am certain that they can be integrated very easiely
  28. to more recent versions of the source.
  29. I have attached the modified source code:
  30. pthread-win32-snap-1999-05-30-WinCE.
  31. All the changes do not affect the code compiled on non-WinCE
  32. environment, provided that the macros used for WinCE compilation
  33. are not used, of course!
  34. Overall description of the WinCE port:
  35. -------------------------------------
  36. Most of the changes had to be made in areas where
  37. pthread-win32 was relying on some standard-C librairies
  38. (e.g. _ftime, calloc, errno), which are not available
  39. on WinCE. We have changed the code to use native Win32
  40. API instead (or in some cases we made wrappers).
  41. The Win32 Semaphores are not available,
  42. so we had to re-implement Semaphores using mutexes
  43. and events.
  44. Limitations / known problems of the WinCE port:
  45. ----------------------------------------------
  46. Not all the semaphore routines have been ported
  47. (semaphores are defined by Posix but are not part
  48. pf pthread).  I have just done enough to make
  49. pthread routines (that rely internally on semaphores)
  50. work, like signal conditions.
  51. I noticed that the Win32 threads work slightly
  52. differently on WinCE.  This may have some impact
  53. on some tricky parts of pthread-win32, but I have
  54. not really investigated.  For example, on WinCE,
  55. the process is killed if the main thread falls off
  56. the bottom (or calls pthread_exit), regardless
  57. of the existence of any other detached thread.
  58. Microsoft manual indicates that this behavior is
  59. deffirent from that of Windows Threads for other
  60. Win32 platforms.
  61. Detailed descriptions of the changes and rationals:
  62. ------------------------------------
  63. - use a new macro NEED_ERRNO.
  64. If defined, the code in errno.c that defines a reentrant errno
  65. is compiled, regardless of _MT and _REENTRANT.
  66. Rational: On WinCE, there is no support for <stdio.h>, <errno.h> or
  67. any other standard C library, i.e. even if _MT or _REENTRANT
  68. is defined, errno is not provided by any library.  NEED_ERRNO
  69. must be set to compile for WinCE.
  70. ------------------------------------
  71. - In implement.h, change #include <semaphore.h> to #include "semaphore.h".
  72. Rational: semaphore.h is provided in pthread-win32 and should not
  73. be searched in the systems standard include.  would not compile.
  74. This change does not seem to create problems on "classic" win32
  75. (e.g. win95).
  76. ------------------------------------
  77. - use a new macro NEED_CALLOC.
  78. If defined, some code in misc.c will provide a replacement
  79. for calloc, which is not available on Win32.
  80. ------------------------------------
  81. - use a new macro NEED_CREATETHREAD.
  82. If defined, implement.h defines the macro _beginthreadex
  83. and _endthreadex.
  84. Rational: On WinCE, the wrappers _beginthreadex and _endthreadex
  85. do not exist. The native Win32 routines must be used.
  86. ------------------------------------
  87. - in misc.c:
  88. #ifdef NEED_DUPLICATEHANDLE
  89.   /* DuplicateHandle does not exist on WinCE */
  90.   self->threadH = GetCurrentThread();
  91. #else
  92.   if( !DuplicateHandle(
  93.        GetCurrentProcess(),
  94.        GetCurrentThread(),
  95.        GetCurrentProcess(),
  96.        &self->threadH,
  97.        0,
  98.        FALSE,
  99.        DUPLICATE_SAME_ACCESS ) )
  100.     {
  101.       free( self );
  102.       return (NULL);
  103.     }
  104. #endif
  105. Rational: On WinCE, DuplicateHandle does not exist.  I could not understand
  106. why DuplicateHandle must be used.  It seems to me that getting the current
  107. thread handle with GetCurrentThread() is sufficient, and it seems to work
  108. perfectly fine, so maybe DuplicateHandle was just plain useless to begin with ?
  109. ------------------------------------
  110. - In private.c, added some code at the beginning of ptw32_processInitialize
  111. to detect the case of multiple calls to ptw32_processInitialize.
  112. Rational: In order to debug pthread-win32, it is easier to compile
  113. it as a regular library (it is not possible to debug DLL's on winCE).
  114. In that case, the application must call ptw32_rocessInitialize()
  115. explicitely, to initialize pthread-win32.  It is safer in this circumstance
  116. to handle the case where ptw32_processInitialize() is called on
  117. an already initialized library:
  118. int
  119. ptw32_processInitialize (void)
  120. {
  121. if (ptw32_processInitialized) {
  122. /* 
  123.  * ignore if already initialized. this is useful for 
  124.  * programs that uses a non-dll pthread
  125.  * library. such programs must call ptw32_processInitialize() explicitely,
  126.  * since this initialization routine is automatically called only when
  127.  * the dll is loaded.
  128.  */
  129. return TRUE;
  130. }
  131.     ptw32_processInitialized = TRUE;
  132.    [...]
  133. }
  134. ------------------------------------
  135. - in private.c, if macro NEED_FTIME is defined, add routines to
  136. convert timespec_to_filetime and filetime_to_timespec, and modified
  137. code that was using _ftime() to use Win32 API instead.
  138. Rational: _ftime is not available on WinCE.  It is necessary to use
  139. the native Win32 time API instead.
  140. Note: the routine timespec_to_filetime is provided as a convenience and a mean
  141. to test that filetime_to_timespec works, but it is not used by the library.
  142. ------------------------------------
  143. - in semaphore.c, if macro NEED_SEM is defined, add code for the routines
  144. _increase_semaphore and _decrease_semaphore, and modify significantly
  145. the implementation of the semaphores so that it does not use CreateSemaphore.
  146. Rational: CreateSemaphore is not available on WinCE.  I had to re-implement
  147. semaphores using mutexes and Events.
  148. Note: Only the semaphore routines that are used by pthread are implemented
  149. (i.e. signal conditions rely on a subset of the semaphores routines, and
  150. this subset works). Some other semaphore routines (e.g. sem_trywait) are
  151. not yet supported on my WinCE port (and since I don't need them, I am not
  152. planning to do anything about them).
  153. ------------------------------------
  154. - in tsd.c, changed the code that defines TLS_OUT_OF_INDEXES
  155. /* TLS_OUT_OF_INDEXES not defined on WinCE */
  156. #ifndef TLS_OUT_OF_INDEXES
  157. #define TLS_OUT_OF_INDEXES 0xffffffff
  158. #endif
  159. Rational: TLS_OUT_OF_INDEXES is not defined in any standard include file
  160. on WinCE.
  161. ------------------------------------
  162. - added file need_errno.h
  163. Rational: On WinCE, there is no errno.h file. need_errno.h is just a
  164. copy of windows version of errno.h, with minor modifications due to the fact
  165. that some of the error codes are defined by the WinCE socket library.
  166. In pthread.h, if NEED_ERRNO is defined, the file need_errno.h is
  167. included (instead of <errno.h>).
  168. -- eof