Skip to content

Instantly share code, notes, and snippets.

View josephnoir's full-sized avatar

Raphael josephnoir

View GitHub Profile
This file has been truncated, but you can view the full file.
195 caf DEBUG actor0 0x70000ffed000 caf.logger log_first_line logger.cpp:612 level = trace, node = B14BB97889E98618555F59A0EFFB47A814626900#66967, component-blacklist = []
3 caf TRACE actor0 0x1149635c0 caf.io.network child_process_inherit native_socket.cpp:134 ENTRY fd = 3 new_value = false
3 caf TRACE actor0 0x1149635c0 caf.io.network operator() native_socket.cpp:134 EXIT
3 caf TRACE actor0 0x1149635c0 caf.io.network child_process_inherit native_socket.cpp:134 ENTRY fd = 4 new_value = false
3 caf TRACE actor0 0x1149635c0 caf.io.network operator() native_socket.cpp:134 EXIT
3 caf TRACE actor0 0x1149635c0 caf.node_id.data create_singleton node_id.cpp:144 ENTRY
190 caf TRACE actor0 0x1149635c0 caf.node_id.data operator() node_id.cpp:144 EXIT
190 caf TRACE actor0 0x1149635c0 caf.group_manager init group_manager.cpp:443 ENTRY
190 caf TRACE actor0 0x1149635c0 namespace).local_group_module local_group_module group_manager.cpp:334 ENTRY
190 caf TRACE actor0 0x1149635c0 caf.$.local_group_module operator() gro

Keybase proof

I hereby claim:

  • I am josephnoir on github.
  • I am josephnoir (https://keybase.io/josephnoir) on keybase.
  • I have a public key ASAECitVKfkUMIFBuy8AvrBYgMiEbc2snit0PlNy6w28gAo

To claim this, I am signing this object:

@josephnoir
josephnoir / static_initialization.cpp
Created September 19, 2014 15:08
Little example for static initialization in C++.
#include <iostream>
using namespace std;
struct foo {
foo() : data(1) { }
int data;
};
static foo bar;
@josephnoir
josephnoir / get_device_info.cpp
Last active December 28, 2017 18:29
Get information about OpenCL devices.
#include <iostream>
#include <fstream>
#if defined __APPLE__
#include <OpenCL/opencl.h>
#else
#include <CL/opencl.h>
#endif
using namespace std;