Changes between Initial Version and Version 1 of rfc16_ogr_reentrancy


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

--

Legend:

Unmodified
Added
Removed
Modified
  • rfc16_ogr_reentrancy

    v1 v1  
     1
     2= RFC 16: OGR Thread Safety =
     3
     4Author: Frank Warmerdam[[BR]]
     5Contact: warmerdam@pobox.com[[BR]]
     6Status: Development
     7
     8== Summary ==
     9
     10In an effort to better support thread safety in OGR some methods are added as internal infrastructure is updated.
     11
     12== Definitions ==
     13
     14Reentrant: A reentrant function can be called simultaneously by multiple threads provided that each invocation of the function references unique data.
     15
     16Thread-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.
     17