home *** CD-ROM | disk | FTP | other *** search
/ ARM Club 3 / TheARMClub_PDCD3.iso / hensa / misc / tornado / t2demo010a1 / Limitation < prev    next >
Encoding:
Text File  |  1996-12-06  |  851 b   |  16 lines

  1. Limitations of this version:
  2. -=-=-=-=-=-=-=-=-=-=-=-=-=-=
  3.  * There is no support for thread priorities ie; each thread gets the same
  4. amount of time as the others.
  5.  * There is a default 100ms slice given to each process
  6.  * 256 bytes of stack are allocated to each thread. This is neither
  7. changeable nor extendable so be careful if your thread calls a lot of nested
  8. procedures (ie; don't recurse thread code). If your thread does run out of
  9. stack space the results are undefinable.
  10.  * Interrupt code in application space is not supported
  11.  * Currently there is a 32 client limit and a 32 threads per client limit and
  12. no checks to see if they've been exceeded
  13.  * No error handling provided by the C veneers as yet
  14.  * Only partial error handling as yet implemented in the module
  15.  * Currently heavy memory leakage happens when using the RMA to store things
  16.