History log of /petsc/src/sys/classes/viewer/utils/makefile (Results 1 – 6 of 6)
Revision Date Author Comments
# 5e642da6 21-Oct-2025 Satish Balay <balay@mcs.anl.gov>

Merge branch 'jolivet/checkbadSource' into 'main'

checkbadSource: enforce proper style in makefiles

See merge request petsc/petsc!8802


# 3f02e49b 21-Oct-2025 Pierre Jolivet <pierre@joliv.et>

checkbadSource: enforce proper style in makefiles


# 360cdf6b 28-Oct-2023 Satish Balay <balay@mcs.anl.gov>

Merge branch 'barry/2023-10-25/rename-rules-doc' into 'main'

Rename rules.doc and rules.utils because GitLab treats the former as a MS Word document.

See merge request petsc/petsc!6965


# cb5db241 25-Oct-2023 Barry Smith <bsmith@mcs.anl.gov>

Rename rules.doc and rules.utils because GitLab treats the former as a MS Word document.

Thanks-to: Jed Brown


# 6c37f76f 27-Jul-2023 Satish Balay <balay@mcs.anl.gov>

Merge branch 'tisaac/feature-log-handler' into 'main'

Deglobalize logging into PetscLogHandler and PetscLogState

See merge request petsc/petsc!6709


# 778ae69a 13-Jul-2023 Toby Isaac <toby.isaac@gmail.com>

Sys: Move PetscBT declaration to petscsystypes.h

The PetscBT header included an inline function that calls
PetscViewer functions. I want to use PetscBT in the exposed
logging interface, but can't d

Sys: Move PetscBT declaration to petscsystypes.h

The PetscBT header included an inline function that calls
PetscViewer functions. I want to use PetscBT in the exposed
logging interface, but can't do that with the current header
organization.

To be able to use PetscBT in this way, I move the declaration
of PetscBT into petscsystypes.h (independent of the inline
functions like PetscBTLookup), and I move the PetscBTView
out of the header and into a new file,
src/sys/classes/viewer/utils/btview.c.

In moving PETSC_BITS_PER_BYTE (= CHAR_BIT) into petscsystypes.h
I noticed that limits.h is included in petscsystypes.h so there
is no need to additionally include it in petscsys.h, so I removed
that include.

show more ...