Initial s390-tools-2.0.0 import

This commit is based on the s390-tools-1.39.0 version.

Changes on top of s390-tools-1.39.0:

 - Add MIT license to all source files
 - Add LICENSE file
 - Transform REAMDE to README.md (markdown)
 - Add AUTHORS.md file
 - Add CONTRIBUTING.md file
 - Move changelog from README to CHANGELOG.md file

Reviewed-by: Stefan Haberland <sth@linux.vnet.ibm.com>
Signed-off-by: Michael Holzheu <holzheu@linux.vnet.ibm.com>
This commit is contained in:
Michael Holzheu
2017-08-07 16:13:17 +02:00
commit b627b8d8e1
647 changed files with 168974 additions and 0 deletions

View File

@@ -0,0 +1,95 @@
/**
* util_panic_example - Example program for util_panic
*
* Copyright IBM Corp. 2016, 2017
*
* s390-tools is free software; you can redistribute it and/or modify
* it under the terms of the MIT license. See LICENSE for details.
*/
//! [code]
#include <errno.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <sys/resource.h>
#include <sys/time.h>
#include "lib/util_panic.h"
/* Make functions noinline to have a nice backtrace */
#define __noinline __attribute__((noinline))
/*
* Test util_panic()
*/
__noinline void panic_test_func(void)
{
fprintf(stderr, "Testing util_panic() now\n");
util_panic("Adieu beautiful world ...\n");
fprintf(stderr, "You should not see this\n");
}
/*
* Test util_panic() with errno handling
*/
__noinline void panic_errno_test_func(void)
{
const char *file = "i_do_not_exist";
if (fopen("i_do_not_exist", "r") == NULL) {
util_panic("Open file \"%s\" failed: %s\n",
file, strerror(errno));
}
fprintf(stderr, "You should not see this\n");
}
/*
* Test util_assert()
*/
__noinline void assert_test_func(void)
{
char *drink_actual = "beer";
fprintf(stderr, "Testing util_assert() now\n");
util_assert(strcmp(drink_actual, "water") == 0,
"We expected \"%s\" but got \"%s\"\n",
"water", drink_actual);
fprintf(stderr, "You should not see this\n");
}
/*
* Demonstrate util_panic() and util_assert()
*/
int main(int argc, char *argv[])
{
struct rlimit rlim_unlimited = {-1, -1};
struct rlimit rlim_zero = {0, 0};
if (argc != 2)
goto fail;
if (strcmp(argv[1], "util_panic") == 0) {
fprintf(stderr, "Disable core files: ulimit -c 0\n");
setrlimit(RLIMIT_CORE, &rlim_zero);
/* Do the panic */
panic_test_func();
} else if (strcmp(argv[1], "util_panic_errno") == 0) {
setrlimit(RLIMIT_CORE, &rlim_unlimited);
/* Do the panic */
panic_errno_test_func();
} else if (strcmp(argv[1], "util_assert") == 0) {
fprintf(stderr, "Enable core files: ulimit -c unlimited\n");
setrlimit(RLIMIT_CORE, &rlim_unlimited);
/* Do the assertion */
assert_test_func();
}
fail:
fprintf(stderr, "Usage: %s util_panic|util_panic_errno|util_assert\n", argv[0]);
return EXIT_FAILURE;
}
//! [code]