Changes between Version 1 and Version 2 of rfc16_ogr_reentrancy


Ignore:
Timestamp:
Sep 4, 2007, 8:44:50 AM (17 years ago)
Author:
warmerdam
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • rfc16_ogr_reentrancy

    v1 v2  
    1212== Definitions ==
    1313
    14 Reentrant: A reentrant function can be called simultaneously by multiple threads provided that each invocation of the function references unique data.
     14'''Reentrant''': A reentrant function can be called simultaneously by multiple threads provided that each invocation of the function references unique data.
    1515
    16 Thread-safe: A thread-safe function can be called simultaneously by multiple threads when each invocation references shared data. All access to the shared data is serialized.
     16'''Thread-safe''': A thread-safe function can be called simultaneously by multiple threads when each invocation references shared data. All access to the shared data is serialized.
    1717