Document that IAR gmtime_s() is auto selected

This commit is contained in:
Andres Amaya Garcia 2018-09-05 12:05:59 +01:00
parent 433f911e59
commit 45e30201a4
2 changed files with 5 additions and 5 deletions

View file

@ -7,8 +7,8 @@ API Changes
whose implementation should behave as a thread safe version of gmtime(). whose implementation should behave as a thread safe version of gmtime().
This allows users to configure such an implementation at compile time when This allows users to configure such an implementation at compile time when
the target system cannot be deduced automatically. At this stage Mbed TLS the target system cannot be deduced automatically. At this stage Mbed TLS
is only able to automtically select implementations for Windows and POSIX is only able to automatically select implementations for Windows, POSIX
C libraries. C libraries and IAR.
Bugfix Bugfix
* Fixes an issue with MBEDTLS_CHACHAPOLY_C which would not compile if * Fixes an issue with MBEDTLS_CHACHAPOLY_C which would not compile if

View file

@ -149,9 +149,9 @@
* when called behaves similarly to the gmtime() function from the C standard, * when called behaves similarly to the gmtime() function from the C standard,
* but is thread safe. Mbed TLS will try to identify the underlying platform * but is thread safe. Mbed TLS will try to identify the underlying platform
* and configure an appropriate underlying implementation (e.g. gmtime_r() for * and configure an appropriate underlying implementation (e.g. gmtime_r() for
* POSIX and gmtime_s() for Windows). If this is not possible, then gmtime() * POSIX and gmtime_s() for Windows and IAR). If this is not possible, then
* will be used. Refer to the documentation for mbedtls_platform_gmtime() for * gmtime() will be used. Refer to the documentation for
* more information. * mbedtls_platform_gmtime() for more information.
* *
* \note It is possible to configure an implementation for * \note It is possible to configure an implementation for
* mbedtls_platform_gmtime() at compile-time by using the macro * mbedtls_platform_gmtime() at compile-time by using the macro