products/Sources/formale Sprachen/C/Postgres/contrib/sepgsql/   (Linux Kernel Version 6.17.9©)  Datei vom 11.4.2026 mit Größe 16 kB image not shown  

SSL nosleep.c   Interaktion und
Portierbarkeitunbekannt

 
/*++
/* NAME
/* nosleep 3
/* SUMMARY
/* override the system sleep(3) implementation
/* SYNOPSIS
/* LD_PRELOAD=/path/to/nosleep.so command....
/*
/* int sleep(unsigned int seconds)
/* DESCRIPTION
/* This sleep(3) implementation returns zero immediately. The purpose
/* is to speed up error handler tests by skipping the delay between
/* reporting a fatal error and before terminating the process.
/* LICENSE
/* .ad
/* .fi
/* The Secure Mailer license must be distributed with this software.
/* AUTHOR(S)
/* Wietse Venema
/* porcupine.org
/*--*/


#include <unistd.h>

unsigned int sleep(unsigned int seconds)
{
    /* Don't sleep. */
    return (0);
}

Messung V0.5 in Prozent
C=92 H=91 G=91

[Verzeichnis aufwärts0.15unsichere VerbindungÜbersetzung europäischer Sprachen durch Browser2026-08-10]