Skip to content

Instantly share code, notes, and snippets.

View Cyberax's full-sized avatar

Alex Besogonov Cyberax

View GitHub Profile
@Cyberax
Cyberax / forker.c
Created November 17, 2019 07:41
Demo
#include <sys/types.h>
#include <unistd.h>
#include <stdlib.h>
#include <sys/wait.h>
int main() {
pid_t pid1;
pid_t pid2;
int status;
@Cyberax
Cyberax / ShitCode
Created November 17, 2019 07:05
ShitCodeCPP
const FileDescriptorOwner cgroup_procs_fd(open_appendexisting_at(AT_FDCWD, (current + "/cgroup.procs").c_str()));
if (0 > cgroup_procs_fd.get()) {
procs_file_error:
const int error(errno);
std::fprintf(stderr, "%s: FATAL: %s%s: %s\n", prog, current.c_str(), "/cgroup.procs", std::strerror(error));
throw EXIT_FAILURE;
}
if (0 > write(cgroup_procs_fd.get(), "0\n", 2)) goto procs_file_error;
int generate_indexed_something(size_t BufPixels, xxx ResultArray, xxx pixels, int_t pixlen)
{
PyObject * BufString = 0;
PyObject * Result = 0;
/* extend ResultArray by a bunch of converted pixels at a time */
if (BufPixels % 4 != 0)
{
/* fill out unused part of byte with zeroes--actually shouldn't occur */
PixBuf[BufPixels / 4] &= ~(0xff << BufPixels % 4 * 2);
static void ParseColorsTuple
(
PyObject * ColorTuple,
uint32_t * colors /* array of 4 elements */
)
/* parses ColorTuple as a tuple of 4 elements, each in turn being a tuple of
4 integers (r, g, b, a) each in the range [0 .. 255]. Puts the result as
Cairo-format pixel values into colors. */
{
PyObject * TheColors[4] = {0, 0, 0, 0};