Quellcodebibliothek Statistik Leitseite products/Sources/formale Sprachen/C/Android/bionic/bionic/benchmarks/   (Android Betriebssystem Version 17©)  Datei vom 26.5.2026 mit Größe 2 kB image not shown  

Quelle  unistd_benchmark.cpp

  Sprache: C
 

/*
 * Copyright (C) 2014 The Android Open Source Project
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */


#include <errno.h>
#include <string.h>
#include <sys/syscall.h>
#include <sys/types.h>
#include <sys/wait.h>
#include <unistd.h>

#include <string>

#include <android-base/stringprintf.h>
#include <benchmark/benchmark.h>
#include "util.h"

BIONIC_TRIVIAL_BENCHMARK(BM_unistd_getpid, getpid());
BIONIC_TRIVIAL_BENCHMARK(BM_unistd_getpid_syscall, syscall(__NR_getpid));

// TODO: glibc 2.30 added gettid() too.
#if defined(__BIONIC__)
BIONIC_TRIVIAL_BENCHMARK(BM_unistd_gettid, gettid());
#endif
BIONIC_TRIVIAL_BENCHMARK(BM_unistd_gettid_syscall, syscall(__NR_gettid));

// Many native allocators have custom prefork and postfork functions.
// Measure the fork call to make sure nothing takes too long.
void BM_unistd_fork_call(benchmark::State& state) {
  for (auto _ : state) {
    pid_t pid;
    if ((pid = fork()) == 0) {
      // Sleep for a little while so that the parent is not interrupted
      // right away when the process exits.
      usleep(100);
      _exit(1);
    }
    state.PauseTiming();
    if (pid == -1) {
      std::string err = android::base::StringPrintf("Fork failed: %m");
      state.SkipWithError(err.c_str());
    }
    pid_t wait_pid = waitpid(pid, 00);
    if (wait_pid != pid) {
      if (wait_pid == -1) {
        std::string err = android::base::StringPrintf("waitpid call failed: %m");
        state.SkipWithError(err.c_str());
      } else {
        std::string err = android::base::StringPrintf(
            "waitpid return an unknown pid, expected %d, actual %d", pid, wait_pid);
        state.SkipWithError(err.c_str());
      }
    }
    state.ResumeTiming();
  }
}
BIONIC_BENCHMARK(BM_unistd_fork_call);

Messung V0.5 in Prozent
C=84 H=97 G=90

¤ Dauer der Verarbeitung: 0.22 Sekunden  (vorverarbeitet am  2026-06-28) ¤

*© Formatika GbR, Deutschland






Wurzel

Suchen

PVS Prover

Isabelle Prover

NIST Cobol Testsuite

Cephes Mathematical Library

Vienna Development Method

Haftungshinweis

Die Informationen auf dieser Webseite wurden nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit, noch Qualität der bereit gestellten Informationen zugesichert.

Bemerkung:

Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.