Blame sysdeps/pthread/timer_delete.c

Packit Service 82fcde
/* Copyright (C) 2000-2018 Free Software Foundation, Inc.
Packit Service 82fcde
   This file is part of the GNU C Library.
Packit Service 82fcde
   Contributed by Kaz Kylheku <kaz@ashi.footprints.net>.
Packit Service 82fcde
Packit Service 82fcde
   The GNU C Library is free software; you can redistribute it and/or
Packit Service 82fcde
   modify it under the terms of the GNU Lesser General Public License as
Packit Service 82fcde
   published by the Free Software Foundation; either version 2.1 of the
Packit Service 82fcde
   License, or (at your option) any later version.
Packit Service 82fcde
Packit Service 82fcde
   The GNU C Library is distributed in the hope that it will be useful,
Packit Service 82fcde
   but WITHOUT ANY WARRANTY; without even the implied warranty of
Packit Service 82fcde
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
Packit Service 82fcde
   Lesser General Public License for more details.
Packit Service 82fcde
Packit Service 82fcde
   You should have received a copy of the GNU Lesser General Public
Packit Service 82fcde
   License along with the GNU C Library; see the file COPYING.LIB.  If
Packit Service 82fcde
   not, see <http://www.gnu.org/licenses/>.  */
Packit Service 82fcde
Packit Service 82fcde
#include <assert.h>
Packit Service 82fcde
#include <errno.h>
Packit Service 82fcde
#include <pthread.h>
Packit Service 82fcde
#include <time.h>
Packit Service 82fcde
Packit Service 82fcde
#include "posix-timer.h"
Packit Service 82fcde
Packit Service 82fcde
Packit Service 82fcde
/* Delete timer TIMERID.  */
Packit Service 82fcde
int
Packit Service 82fcde
timer_delete (timer_t timerid)
Packit Service 82fcde
{
Packit Service 82fcde
  struct timer_node *timer;
Packit Service 82fcde
  int retval = -1;
Packit Service 82fcde
Packit Service 82fcde
  pthread_mutex_lock (&__timer_mutex);
Packit Service 82fcde
Packit Service 82fcde
  timer = timer_id2ptr (timerid);
Packit Service 82fcde
  if (! timer_valid (timer))
Packit Service 82fcde
    /* Invalid timer ID or the timer is not in use.  */
Packit Service 82fcde
    __set_errno (EINVAL);
Packit Service 82fcde
  else
Packit Service 82fcde
    {
Packit Service 82fcde
      if (timer->armed && timer->thread != NULL)
Packit Service 82fcde
	{
Packit Service 82fcde
	  struct thread_node *thread = timer->thread;
Packit Service 82fcde
	  assert (thread != NULL);
Packit Service 82fcde
Packit Service 82fcde
	  /* If thread is cancelled while waiting for handler to terminate,
Packit Service 82fcde
	     the mutex is unlocked and timer_delete is aborted.  */
Packit Service 82fcde
	  pthread_cleanup_push (__timer_mutex_cancel_handler, &__timer_mutex);
Packit Service 82fcde
Packit Service 82fcde
	  /* If timer is currently being serviced, wait for it to finish.  */
Packit Service 82fcde
	  while (thread->current_timer == timer)
Packit Service 82fcde
	    pthread_cond_wait (&thread->cond, &__timer_mutex);
Packit Service 82fcde
Packit Service 82fcde
	  pthread_cleanup_pop (0);
Packit Service 82fcde
        }
Packit Service 82fcde
Packit Service 82fcde
      /* Remove timer from whatever queue it may be on and deallocate it.  */
Packit Service 82fcde
      timer->inuse = TIMER_DELETED;
Packit Service 82fcde
      list_unlink_ip (&timer->links);
Packit Service 82fcde
      timer_delref (timer);
Packit Service 82fcde
      retval = 0;
Packit Service 82fcde
    }
Packit Service 82fcde
Packit Service 82fcde
  pthread_mutex_unlock (&__timer_mutex);
Packit Service 82fcde
Packit Service 82fcde
  return retval;
Packit Service 82fcde
}