Blame source/uds/threadOnce.c

Packit Service 310c69
/*
Packit Service 310c69
 * Copyright (c) 2020 Red Hat, Inc.
Packit Service 310c69
 *
Packit Service 310c69
 * This program is free software; you can redistribute it and/or
Packit Service 310c69
 * modify it under the terms of the GNU General Public License
Packit Service 310c69
 * as published by the Free Software Foundation; either version 2
Packit Service 310c69
 * of the License, or (at your option) any later version.
Packit Service 310c69
 * 
Packit Service 310c69
 * This program is distributed in the hope that it will be useful,
Packit Service 310c69
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
Packit Service 310c69
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
Packit Service 310c69
 * GNU General Public License for more details.
Packit Service 310c69
 * 
Packit Service 310c69
 * You should have received a copy of the GNU General Public License
Packit Service 310c69
 * along with this program; if not, write to the Free Software
Packit Service 310c69
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
Packit Service 310c69
 * 02110-1301, USA. 
Packit Service 310c69
 *
Packit Service 310c69
 * $Id: //eng/uds-releases/jasper/src/uds/threadOnce.c#1 $
Packit Service 310c69
 */
Packit Service 310c69
Packit Service 310c69
#include "errors.h"
Packit Service 310c69
#include "threads.h"
Packit Service 310c69
Packit Service 310c69
enum {
Packit Service 310c69
  ONCE_NOT_DONE    = 0,
Packit Service 310c69
  ONCE_IN_PROGRESS = 1,
Packit Service 310c69
  ONCE_COMPLETE    = 2,
Packit Service 310c69
};
Packit Service 310c69
Packit Service 310c69
/*****************************************************************************/
Packit Service 310c69
int performOnce(OnceState *once, void (*function)(void))
Packit Service 310c69
{
Packit Service 310c69
  for (;;) {
Packit Service 310c69
    switch (atomic_cmpxchg(once, ONCE_NOT_DONE, ONCE_IN_PROGRESS)) {
Packit Service 310c69
    case ONCE_NOT_DONE:
Packit Service 310c69
      function();
Packit Service 310c69
      atomic_set_release(once, ONCE_COMPLETE);
Packit Service 310c69
      return UDS_SUCCESS;
Packit Service 310c69
    case ONCE_IN_PROGRESS:
Packit Service 310c69
      yieldScheduler();
Packit Service 310c69
      break;
Packit Service 310c69
    case ONCE_COMPLETE:
Packit Service 310c69
      return UDS_SUCCESS;
Packit Service 310c69
    default:
Packit Service 310c69
      return UDS_BAD_STATE;
Packit Service 310c69
    }
Packit Service 310c69
  }
Packit Service 310c69
}