/*====================================================================== FILE: icaltm_test.c SPDX-FileCopyrightText: 2017 Red Hat, Inc. SPDX-License-Identifier: LGPL-2.1-only OR MPL-2.0 The Initial Developer of the Original Code is Milan Crha ======================================================================*/ #ifdef HAVE_CONFIG_H #include #endif #include "libical/ical.h" #include #if ICAL_SYNC_MODE != ICAL_SYNC_MODE_THREADLOCAL static icaltimezone *zone, *utc; #endif static void *test_tread(void *user_data) { struct icaltimetype itt; int ii; _unused(user_data); #if ICAL_SYNC_MODE == ICAL_SYNC_MODE_THREADLOCAL // In thread-local mode all initialization must be done per thread, so we do it here, rather // than in main(). icaltimezone *zone = icaltimezone_get_builtin_timezone("America/New_York"); icaltimezone *utc = icaltimezone_get_utc_timezone(); #endif itt = icaltime_from_string("19710203T040506"); itt.zone = zone; for (ii = 0; ii < 200; ii++, itt.year++) { icaltime_convert_to_zone(itt, utc); } return NULL; } int main(void) { pthread_t thread[2]; int ii; #if ICAL_SYNC_MODE != ICAL_SYNC_MODE_THREADLOCAL // In thread-local mode all initialization must be done per thread. // In all other modes we do the initialization of built in timezones here. zone = icaltimezone_get_builtin_timezone("America/New_York"); utc = icaltimezone_get_utc_timezone(); #endif for (ii = 0; ii < 2; ii++) { pthread_create(&thread[ii], NULL, test_tread, NULL); } for (ii = 0; ii < 2; ii++) { pthread_join(thread[ii], NULL); } return 0; }