Quellcodebibliothek Statistik Leitseite products/sources/formale Sprachen/C/Linux/arch/nios2/kernel/   (Open Source Betriebssystem Version 6.17.9©)  Datei vom 24.10.2025 mit Größe 1 kB image not shown  

Quelle  sys_nios2.c   Sprache: C

 
/*
 * Copyright (C) 2013 Altera Corporation
 * Copyright (C) 2011-2012 Tobias Klauser <tklauser@distanz.ch>
 * Copyright (C) 2004 Microtronix Datacom Ltd.
 *
 * This file is subject to the terms and conditions of the GNU General Public
 * License.  See the file "COPYING" in the main directory of this archive
 * for more details.
 */


#include <linux/export.h>
#include <linux/file.h>
#include <linux/fs.h>
#include <linux/slab.h>
#include <linux/syscalls.h>

#include <asm/cacheflush.h>
#include <asm/traps.h>

/* sys_cacheflush -- flush the processor cache. */
asmlinkage int sys_cacheflush(unsigned long addr, unsigned long len,
    unsigned int op)
{
 struct vm_area_struct *vma;
 struct mm_struct *mm = current->mm;

 if (len == 0)
  return 0;

 /* We only support op 0 now, return error if op is non-zero.*/
 if (op)
  return -EINVAL;

 /* Check for overflow */
 if (addr + len < addr)
  return -EFAULT;

 if (mmap_read_lock_killable(mm))
  return -EINTR;

 /*
 * Verify that the specified address region actually belongs
 * to this process.
 */

 vma = find_vma(mm, addr);
 if (vma == NULL || addr < vma->vm_start || addr + len > vma->vm_end) {
  mmap_read_unlock(mm);
  return -EFAULT;
 }

 flush_cache_range(vma, addr, addr + len);

 mmap_read_unlock(mm);
 return 0;
}

asmlinkage int sys_getpagesize(void)
{
 return PAGE_SIZE;
}

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

¤ Dauer der Verarbeitung: 0.23 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.