Eine aufbereitete Darstellung der Quelle

 
     
 
 
Anforderungen  |   Konzepte  |   Entwurf  |   Entwicklung  |   Qualitätssicherung  |   Lebenszyklus  |   Steuerung
 
 
 
 

Benutzer

Quelle  hvc_irq.c

  Sprache: C
 

// SPDX-License-Identifier: GPL-2.0
/*
 * Copyright IBM Corp. 2001,2008
 *
 * This file contains the IRQ specific code for hvc_console
 *
 */


#include <linux/interrupt.h>

#include "hvc_console.h"

static irqreturn_t hvc_handle_interrupt(int irq, void *dev_instance)
{
 /* if hvc_poll request a repoll, then kick the hvcd thread */
 if (hvc_poll(dev_instance))
  hvc_kick();

 /*
 * We're safe to always return IRQ_HANDLED as the hvcd thread will
 * iterate through each hvc_struct.
 */

 return IRQ_HANDLED;
}

/*
 * For IRQ based systems these callbacks can be used
 */

int notifier_add_irq(struct hvc_struct *hp, int irq)
{
 int rc;

 if (!irq) {
  hp->irq_requested = 0;
  return 0;
 }
 rc = request_irq(irq, hvc_handle_interrupt, hp->flags,
   "hvc_console", hp);
 if (!rc)
  hp->irq_requested = 1;
 return rc;
}

void notifier_del_irq(struct hvc_struct *hp, int irq)
{
 if (!hp->irq_requested)
  return;
 free_irq(irq, hp);
 hp->irq_requested = 0;
}

void notifier_hangup_irq(struct hvc_struct *hp, int irq)
{
 notifier_del_irq(hp, irq);
}

Messung V0.5 in Prozent
C=96 H=93 G=94

¤ Dauer der Verarbeitung: 0.17 Sekunden  (vorverarbeitet am  2026-06-08) ¤

*© 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.






                                                                                                                                                                                                                                                                                                                                                                                                     


Neuigkeiten

     Aktuelles
     Motto des Tages

Open Source Software

     Quellcodebibliothek
     Eigene Quellcodes
     Fremde Quellcodes
     Suchen

Jenseits des Üblichen ....

Besucherstatistik

Besucherstatistik

Statistik
#Sources=277311
#Domains=752002