| 88 | */ |
| 89 | |
| 90 | struct tm *gmtime_r(const time_t *clock, struct tm *res) |
| 91 | { |
| 92 | struct tm *tmp; |
| 93 | mysql_mutex_lock(&LOCK_localtime_r); |
| 94 | tmp= gmtime(clock); |
| 95 | *res= *tmp; |
| 96 | mysql_mutex_unlock(&LOCK_localtime_r); |
| 97 | return res; |
| 98 | } |
| 99 | #endif |
| 100 | |
| 101 | /**************************************************************************** |