Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c

Why do I get an excess element warning in this tagged union in gcc C?

c gcc

Is there a way to express binary numbers with some sort of separation between digits in C?

c

Socket re-write after failed

c windows linux tcp

How do I interrupt a background thread that's blocking on IO?

c pthreads interrupt

Flex, continuous scanning stream (from socket). Did I miss something using yywrap()?

c lex flex-lexer

How to start debug in Visual Studio Code on macOs in C language?

Formatted I/O inside signal handler

c io signals reentrancy

CPU cache understanding using a C program

c performance caching time

Finding minimum using bit manipulation

c bit-manipulation

When to use mmap vs when to use read and write with cache layer?

c database io mmap

Unit testing C module static variable

c unit-testing cpputest

How to input a data file into a 2D array

c file-io

Executing pthread "pre init" function on thread start

c linux pthreads

Why is the c function `open` ~4x slower on MacOS vs. an Ubuntu VM on the same machine?

c macos ubuntu filesystems fcntl

Is it necessary to check for endianness with unsigned 8-bit integers?

c endianness

Tracking thread execution by core

c multithreading multicore

wait() does not wait for every child

Static library having object files with same name containing static variables with same name

c static linker

How to read a date from file in c

c file date fgets

does popen in C block until the command is finished?

c popen