History log of /petsc/src/sys/error/signal.c (Results 76 – 100 of 258)
Revision Date Author Comments
# b3b33980 05-Apr-2021 Satish Balay <balay@mcs.anl.gov>

Merge branch 'jolivet/fix-minor-docs-ops' into 'release'

Minor documentation fixes and check for missing operation

See merge request petsc/petsc!3815


# 2fb1d9da 27-Mar-2021 Pierre Jolivet <pierre@joliv.et>

PetscSignalHandlerDefault(): extra space


# 9e1659c0 29-Sep-2020 Satish Balay <balay@mcs.anl.gov>

Merge branch 'barry/2020-09-28/rm-unneeded-petscmallocvalidate' into 'master'

Remove PetscMallocValidate(__LINE__,PETSC_FUNCTION_NAME,__FILE__); I added to the signal handler

See merge request pe

Merge branch 'barry/2020-09-28/rm-unneeded-petscmallocvalidate' into 'master'

Remove PetscMallocValidate(__LINE__,PETSC_FUNCTION_NAME,__FILE__); I added to the signal handler

See merge request petsc/petsc!3268

show more ...


# ba292325 29-Sep-2020 Barry Smith <bsmith@mcs.anl.gov>

Remove PetscMallocValidate(__LINE__,PETSC_FUNCTION_NAME,__FILE__); I added to the signal handler
because I forgot just a few days before I had already added it (with a nice message as well).

Commi

Remove PetscMallocValidate(__LINE__,PETSC_FUNCTION_NAME,__FILE__); I added to the signal handler
because I forgot just a few days before I had already added it (with a nice message as well).

Commit-type: fix of unneeded code
/spend 5m

show more ...


# a0d76e48 28-Sep-2020 Satish Balay <balay@mcs.anl.gov>

Merge branch 'barry/2020-09-24/validatemalloconerror' into 'master'

Call PetscMallocValidate() on signal and error conditions to check if the...

See merge request petsc/petsc!3246


# 4ed0ab5b 24-Sep-2020 Barry Smith <bsmith@mcs.anl.gov>

Call PetscMallocValidate() on signal and error conditions to check if the final memory state is correct

Commit-type: error-checking
/spend 10m


# abb05746 25-Sep-2020 Satish Balay <balay@mcs.anl.gov>

Merge branch 'barry/2020-08-24/petsckernel-valid-pointer' into 'master'

Barry/2020 08 24/petsckernel valid pointer

See merge request petsc/petsc!3204


# 23fff9af 24-Aug-2020 Barry Smith <bsmith@mcs.anl.gov>

Need initialize to prevent test systems from complaining about possibly uninitialized variables.

Commit-type: portability-fix
/spend 5m
Reported-by: GitLab CI


# f0b7f91a 24-Aug-2020 Barry Smith <bsmith@mcs.anl.gov>

Call PetscMallocValidate() when SEGV or SIGBUS are received

Commit-type: debugging
/spend 10m


# 573a2795 22-Jul-2020 Satish Balay <balay@mcs.anl.gov>

Merge remote-tracking branch 'origin/maint'


# 5ad3eedc 21-Jul-2020 Satish Balay <balay@mcs.anl.gov>

Merge branch 'jczhang/let-signal-handler-call-exit' into 'maint'

Call _Exit() to suppress user-registered atexit() functions

See merge request petsc/petsc!2745


# 15d1ca26 23-Apr-2020 Junchao Zhang <jczhang@mcs.anl.gov>

Call _Exit() to suppress user-registered atexit() functions


# 9c15a9aa 24-Apr-2020 Satish Balay <balay@mcs.anl.gov>

Merge branch 'jed/defined-nocpp' into 'master'

PetscDefined: test whether a configuration macro is defined without #ifdef

See merge request petsc/petsc!157


# 76bd3646 14-Apr-2020 Jed Brown <jed@jedbrown.org>

PetscDefined: remove many uses of #ifdef PETSC_USE_DEBUG


# b0d1f38a 22-Mar-2020 Satish Balay <balay@mcs.anl.gov>

Merge remote-tracking branch 'origin/jczhang/feature-sf-pack-direct'

Directly pass root/leafdata to MPI in SF when possible

See merge request petsc/petsc!2506


# c2a741ee 05-Feb-2020 Junchao Zhang <jczhang@mcs.anl.gov>

Test MPI gpu awareness and use default -use_gpu_aware_mpi 1


# 963eeaaa 30-Jan-2020 Satish Balay <balay@mcs.anl.gov>

Merge branch 'dalcinl/fix-null' into 'master'

Sys: Replace 0 -> NULL for pointers

See merge request petsc/petsc!2482


# 02c9f0b5 29-Jan-2020 Lisandro Dalcin <dalcinl@gmail.com>

Sys: Replace 0 -> NULL for pointers


# c906e830 03-Oct-2019 Satish Balay <balay@mcs.anl.gov>

Merge branch 'jczhang/feature-nice-mpi-abort' into 'master'

Provide a nicer MPI_Abort

See merge request petsc/petsc!2137


# 41e02c4d 01-Oct-2019 Junchao Zhang <jczhang@mcs.anl.gov>

Replace MPI_Abort with PETSCABORT


# ef135d0e 01-Jun-2019 Satish Balay <balay@mcs.anl.gov>

Merge remote-tracking branch 'origin/psanan/docs-remove-manconcepts' [PR #1733]


# 0f5d826a 30-May-2019 Patrick Sanan <patrick.sanan@gmail.com>

Man pages: remove Concepts: fields

These fields were previously stripped from the man pages by logic removed in
21a59cba2737d49dc2f0bd12c08db0d2a3f3f209

Remove these fields from all man pages (but

Man pages: remove Concepts: fields

These fields were previously stripped from the man pages by logic removed in
21a59cba2737d49dc2f0bd12c08db0d2a3f3f209

Remove these fields from all man pages (but not from examples).

This is accomplished with GNU sed (gsed on OS X), with the following commands.
*Warning* that this type of command can corrupt a .git directory,
so be cautious in reusing or modifying these commands. They first look
for and delete matching lines with a following line consisting of only whitespace,
and then delete any remaining matching lines.

find src -type f -not -path "*/examples/*" -not -name "*.html" -not -name "*.bib" -exec gsed -i '/Concepts:/ {N; /\n\s*$/d}' {} +
find src -type f -not -path "*/examples/*" -not -name "*.html" -not -name "*.bib" -exec gsed -i '/Concepts:/d' {} +
find include -type f -not -path "*/examples/*" -not -name "*.html" -not -name "*.bib" -exec gsed -i '/Concepts:/ {N; /\n\s*$/d}' {} +
find include -type f -not -path "*/examples/*" -not -name "*.html" -not -name "*.bib" -exec gsed -i '/Concepts:/d' {} +

Hints on the sed command obtained from: https://unix.stackexchange.com/questions/100754/how-to-delete-a-specific-line-and-the-following-blank-line-using-gnu-sed

show more ...


# 391e3792 22-May-2019 BarryFSmith <bsmith@mcs.anl.gov>

Merged in barry/check-bad-urls (pull request #1685)

Barry/check bad urls

Approved-by: Patrick Sanan <patrick.sanan@gmail.com>
Approved-by: Junchao Zhang <junchao.zhang@gmail.com>


# a8d69d7b 19-May-2019 Barry Smith <bsmith@mcs.anl.gov>

Fixed out-dated URLS using make checkbadURLS REPLACE=1

One manual fix of https://en.wikipedia.org/wiki/Buckingham_π_theorem since the automatic tool dropped the first _ for some reason
Manual fix of

Fixed out-dated URLS using make checkbadURLS REPLACE=1

One manual fix of https://en.wikipedia.org/wiki/Buckingham_π_theorem since the automatic tool dropped the first _ for some reason
Manual fix of //faq.html since the automatic tool incorrectly replaced /faq.html to //faq.html in some locations

These are largely updates of http to https but have a variety of other website location changes

Once this branch is in master individual developers can run make checkbadURLS and fix URLs related to their projects manually

Commit-type: bug-fix, documentation

show more ...


# d351d0ed 26-Apr-2019 Satish Balay <balay@mcs.anl.gov>

Merge remote-tracking branch 'origin/maint'


1234567891011