Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
Slurm
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
tud-zih-energy
Slurm
Commits
ad1ed225
Commit
ad1ed225
authored
22 years ago
by
Mark Grondona
Browse files
Options
Downloads
Patches
Plain Diff
xassert; Initial Revision
parent
93022632
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/common/xassert.c
+23
-0
23 additions, 0 deletions
src/common/xassert.c
src/common/xassert.h
+40
-0
40 additions, 0 deletions
src/common/xassert.h
with
63 additions
and
0 deletions
src/common/xassert.c
0 → 100644
+
23
−
0
View file @
ad1ed225
/* $Id$ */
/*
** xassert: replacement for assert which sends error to log instead of stderr
**
*/
#if HAVE_CONFIG_H
# include <config.h>
#endif
#include
<stdlib.h>
#include
<stdio.h>
#include
<src/common/log.h>
void
__xassert_failed
(
char
*
expr
,
const
char
*
file
,
int
line
,
char
*
func
)
{
fatal
(
"%s:%d: %s(): Assertion (%s) failed.
\n
"
,
file
,
line
,
func
,
expr
);
/* in case abort was disabled in fatal() */
abort
();
}
This diff is collapsed.
Click to expand it.
src/common/xassert.h
0 → 100644
+
40
−
0
View file @
ad1ed225
/* $Id$ */
/*
** xassert: assert type macro with configurable handling
** If NDEBUG is defined, do nothing.
** If not, and expression is zero, log an error message and abort.
*/
#ifndef _XASSERT_H
#define _XASSERT_H 1
#if HAVE_CONFIG_H
# include <config.h>
#endif
#include
"macros.h"
#ifdef NDEBUG
# define assert(expr) ((void)0)
#else
/* !NDEBUG */
# define xassert(__ex) _STMT_START { \
(__ex) ? ((void)0) : \
__xassert_failed(__STRING(__ex), __FILE__, __LINE__, __CURRENT_FUNC__) \
} _STMT_END
/* This prints the assertion failed message to the slurm log facility
** (see log.h) and aborts the calling program
** (messages go to stderr if log is not initialized)
*/
extern
void
__xassert_failed
(
char
*
,
const
char
*
,
int
,
const
char
*
)
__NORETURN_ATTR
;
#endif
/* NDEBUG. */
#endif
/* !__XASSERT_H */
/* vim: set sw=4 ts=4 expandtabs */
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment