xpahos

Results 13 comments of xpahos

@aouinizied it's very strange. I'm using the same construction in production: ``` #if defined(_linux_) int val = (getpid() & 0xffff) | (PACKET_FANOUT_LB

@aouinizied looks like I found the problem: ``` pcap_set_fanout_linux(pcap_t *p, int enable, uint16_t mode, uint16_t group_id) ``` I think it will be better to use: ``` set = pcap_set_fanout_linux(pcap_handle, 1,...

@aouinizied yes, you right. PACKET_FANOUT_HASH should send packets only to one unique socket per each address port mapping.

If someone is looking for a solution: https://github.com/therecipe/qt/issues/1279

> The same error. Try to build podman with this commit: https://github.com/containers/podman/commit/6ea703b79880c7f5119fe5355074f8e971df6626 ``` CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES 2e9e8b635337 quay.io/outline/shadowbox:stable /bin/sh -c /cmd.s... 39 hours ago Up...

Looks like this code should call C++ runtime from C runtime.

@aritger sorry for disturbing you. May I ask you or someone else from nvidia to generate `CeUtilsApi` from your sources? I was able to write manually basic methods but I...

``` (lldb) frame select 0 frame #0: 0x00000001176de66c Thorium Framework`___lldb_unnamed_symbol3540 + 15365900 Thorium Framework`___lldb_unnamed_symbol3540: -> 0x1176de66c : ud2 0x1176de66e : int3 0x1176de66f : ud2 0x1176de671 : int3 (lldb) frame select...

`/Applications/Thorium.app/Contents/MacOS/Thorium --disable-features=OptimizationGuideModelDownloading,OptimizationHintsFetching,OptimizationTargetPrediction,OptimizationHints` workaround. At least it works for 30 minutes.

``` echo -e "#\!/bin/sh\n/Applications/Thorium.app/Contents/MacOS/Thorium --disable-features=OptimizationGuideModelDownloading,OptimizationHintsFetching,OptimizationTargetPrediction,OptimizationHints" | cat > /Applications/Thorium.app/Contents/MacOS/Thorium-fix chmod 0755 /Applications/Thorium.app/Contents/MacOS/Thorium-fix ``` And then replace `CFBundleExecutable` with Thorium-fix in `/Applications/Thorium.app/Contents/Info.plist`, but this is a bad way to do it...