netbsd Questions

2

I wrote this program that should just exit with exitcode 44: // prog.S #include <sys/syscall.h> .text .globl _start _start: subl $8, %esp pushl $44 pushl $0 movl $SYS_exit, %eax int $0...
Quinquereme asked 5/2, 2022 at 17:27

2

Solved

I'm new with semaphores and want to add multithreading to my program, but I cannot get around the following problem: sem_wait() should be able to receive a EINTR and unblock, as long as I didn't se...
Whisky asked 22/11, 2015 at 10:44

3

Solved

I work on a NetBSD system through an ssh connection from my Mac and I want to use the screen utility so that I can start processes and come back to them after my terminal connection has been interr...
Installment asked 30/5, 2012 at 20:45

5

I'm trying to determine the time that it takes for a machine to receive a packet, process it and give back an answer. This machine, that I'll call 'server', runs a very simple program, which recei...
Pandolfi asked 16/4, 2013 at 17:56

3

Look at the following implementations of the "echo" command: http://bxr.su/o/bin/echo/echo.c (OpenBSD) http://bxr.su/d/bin/echo/echo.c (DragonFly) http://bxr.su/n/bin/echo/echo.c (NetBSD) http://...
Yuki asked 20/7, 2010 at 13:57
1

© 2022 - 2024 — McMap. All rights reserved.