Quellcodebibliothek Statistik Leitseite products/sources/formale Sprachen/C/Linux/arch/arm/mach-shmobile/   (Open Source Betriebssystem Version 6.17.9©)  Datei vom 24.10.2025 mit Größe 897 B image not shown  

Quelle  suspend.c   Sprache: C

 
// SPDX-License-Identifier: GPL-2.0
/*
 * Suspend-to-RAM support code for SH-Mobile ARM
 *
 *  Copyright (C) 2011 Magnus Damm
 */


#include <linux/pm.h>
#include <linux/suspend.h>
#include <linux/module.h>
#include <linux/err.h>
#include <linux/cpu.h>

#include <asm/io.h>
#include <asm/system_misc.h>

#include "common.h"

static int shmobile_suspend_default_enter(suspend_state_t suspend_state)
{
 cpu_do_idle();
 return 0;
}

static int shmobile_suspend_begin(suspend_state_t state)
{
 cpu_idle_poll_ctrl(true);
 return 0;
}

static void shmobile_suspend_end(void)
{
 cpu_idle_poll_ctrl(false);
}

struct platform_suspend_ops shmobile_suspend_ops = {
 .begin  = shmobile_suspend_begin,
 .end  = shmobile_suspend_end,
 .enter  = shmobile_suspend_default_enter,
 .valid  = suspend_valid_only_mem,
};

int __init shmobile_suspend_init(void)
{
 suspend_set_ops(&shmobile_suspend_ops);
 return 0;
}

Messung V0.5
C=96 H=77 G=86

¤ Dauer der Verarbeitung: 0.0 Sekunden  (vorverarbeitet)  ¤

*© Formatika GbR, Deutschland






Wurzel

Suchen

Beweissystem der NASA

Beweissystem Isabelle

NIST Cobol Testsuite

Cephes Mathematical Library

Wiener Entwicklungsmethode

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.