ABC: A System for Sequential Synthesis and Verification
 
Loading...
Searching...
No Matches
utilPth.c File Reference
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include <assert.h>
#include "misc/vec/vec.h"
Include dependency graph for utilPth.c:

Go to the source code of this file.

Functions

ABC_NAMESPACE_IMPL_START void Util_ProcessThreads (int(*pUserFunc)(void *), void *vData, int nProcs, int TimeOut, int fVerbose)
 DECLARATIONS ///.
 

Function Documentation

◆ Util_ProcessThreads()

ABC_NAMESPACE_IMPL_START void Util_ProcessThreads ( int(* pUserFunc )(void *),
void * vData,
int nProcs,
int TimeOut,
int fVerbose )

DECLARATIONS ///.

CFile****************************************************************

FileName [utilPth.c]

SystemName [ABC: Logic synthesis and verification system.]

PackageName [Generic interface to pthreads.]

Synopsis [Generic interface to pthreads.]

Author [Alan Mishchenko]

Affiliation [UC Berkeley]

Date [Ver. 1.0. Started - August 3, 2024.]

Revision [

Id
utilPth.c,v 1.00 2024/08/03 00:00:00 alanmi Exp

] FUNCTION DEFINITIONS /// Function*************************************************************

Synopsis []

Description []

SideEffects []

SeeAlso []

Definition at line 70 of file utilPth.c.

71{
72 void * pData; int i;
73 Vec_PtrForEachEntry( void *, (Vec_Ptr_t *)vData, pData, i )
74 pUserFunc( pData );
75}
typedefABC_NAMESPACE_HEADER_START struct Vec_Ptr_t_ Vec_Ptr_t
INCLUDES ///.
Definition vecPtr.h:42
#define Vec_PtrForEachEntry(Type, vVec, pEntry, i)
MACRO DEFINITIONS ///.
Definition vecPtr.h:55
Here is the caller graph for this function: