Searched refs:lockstack (Results 1 – 2 of 2) sorted by relevance
3766 const int index = x->lockstack.currentsize - 1; in VecLockGetLocation()3768 *file = index < 0 ? NULL : x->lockstack.file[index]; in VecLockGetLocation()3769 *func = index < 0 ? NULL : x->lockstack.function[index]; in VecLockGetLocation()3770 *line = index < 0 ? 0 : x->lockstack.line[index]; in VecLockGetLocation()3819 …PetscStackPush_Private(x->lockstack, file, func, line, petscstack.petscroutine[index], PETSC_FALSE… in VecLockReadPush()3844 const char *previous = x->lockstack.function[x->lockstack.currentsize - 1]; in VecLockReadPop()3846 PetscStackPop_Private(x->lockstack, previous); in VecLockReadPop()
163 PetscStack lockstack; /* the file,func,line of where locks are added */ member