Home / File/ syscall.h — netty Source File

syscall.h — netty Source File

Architecture documentation for syscall.h, a c file in the netty codebase. 2 imports, 2 dependents.

File c NativeTransport 2 imports 2 dependents

Entity Profile

Dependency Diagram

graph LR
  ddebf97c_764b_c969_f280_80845f7175f3["syscall.h"]
  d0c9fb3d_161c_84ac_b9b6_aac527ef62bc["io_uring.h"]
  ddebf97c_764b_c969_f280_80845f7175f3 --> d0c9fb3d_161c_84ac_b9b6_aac527ef62bc
  a85764e7_9ef9_e057_d0f3_4ac9d68d9fe9["signal.h"]
  ddebf97c_764b_c969_f280_80845f7175f3 --> a85764e7_9ef9_e057_d0f3_4ac9d68d9fe9
  1e90a91a_8d6e_4bf9_7471_176403d8fd24["netty_io_uring_native.c"]
  1e90a91a_8d6e_4bf9_7471_176403d8fd24 --> ddebf97c_764b_c969_f280_80845f7175f3
  14adcbc2_b7ae_69f0_de81_7ff8295f080a["syscall.c"]
  14adcbc2_b7ae_69f0_de81_7ff8295f080a --> ddebf97c_764b_c969_f280_80845f7175f3
  style ddebf97c_764b_c969_f280_80845f7175f3 fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

/*
 * Copyright 2020 The Netty Project
 *
 * The Netty Project licenses this file to you 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:
 *
 *   https://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.
 */
 /* SPDX-License-Identifier: MIT */
#include <signal.h>
#include "io_uring.h"
#ifndef LIBURING_SYSCALL_H
#define LIBURING_SYSCALL_H

/*
 * System calls
 */
extern int sys_io_uring_setup(unsigned entries, struct io_uring_params *p);
extern int sys_io_uring_enter(int fd, unsigned to_submit, unsigned min_complete,
                              unsigned flags, sigset_t *sig);
extern int sys_io_uring_register(int fd, unsigned int opcode, const void *arg, unsigned int nr_args);
#endif

Dependencies

Frequently Asked Questions

What does syscall.h do?
syscall.h is a source file in the netty codebase, written in c. It belongs to the NativeTransport domain.
What does syscall.h depend on?
syscall.h imports 2 module(s): io_uring.h, signal.h.
What files import syscall.h?
syscall.h is imported by 2 file(s): netty_io_uring_native.c, syscall.c.
Where is syscall.h in the architecture?
syscall.h is located at transport-native-io_uring/src/main/c/syscall.h (domain: NativeTransport, directory: transport-native-io_uring/src/main/c).

Analyze Your Own Codebase

Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.

Try Supermodel Free