Allegro Package Designer+ 17.4 S023 Linux SPB 64-bit Edition
(c) Copyright 2019 Cadence Design Systems, Inc.
All Rights Reserved.
Termination codes: exit=3, signal=11, errno=2
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
A | |
Acl A Class Library (library of application agnostic utility classes, Orbit project prefix) | |
APR Advanced Package Router (Allegro toolkit) | |
ASIC Application-Specific Integrated Circuit | |
B | |
BB Bounding Box |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
KEYWORDS: JNI, Java, ProcessBuilder, Thread Error | |
ERROR MESSAGE: [os,thread] Failed to start thread - pthread_create failed (EINVAL) for attributes: stacksize: 136k, guardsize: 0k, detached. | |
SOLUTION: -Djdk.lang.processReaperUseDefaultStackSize=true | |
DESCRIPTION: | |
From JNI process, it is fine to execute Java internal multi-threading, but can not use Runetime.exec or | |
ProcessBuilder to do anything. Even through adjust java stack-realted option | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <stdio.h> | |
#include <memory.h> | |
#define GET(x) (cnt[x>>5]>>(x&31)&1) | |
#define SET(x) (cnt[x>>5] |= 1<<(x&31)) | |
#define REV(x) (cnt[x>>5] ^= 1<<(x&31)) | |
long long ret = 0; | |
void divide(int a[], int b[], int n) { | |
if (n <= 1) return 0; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <bits/stdc++.h> | |
using namespace std; | |
template<typename T> | |
struct PStack : std::enable_shared_from_this<PStack<T>> { | |
T elem; | |
shared_ptr<PStack<T>> next; | |
int sz; | |
PStack(): sz(0), elem(), next(nullptr) {} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package persistent; | |
import java.util.Scanner; | |
public class Persistent { | |
public static interface PStack<T> { | |
public boolean isEmpty(); | |
public long size(); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
SMBIOS.reflectHost = "TRUE" | |
hypervisor.cpuid.v0 = "FALSE" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import java.util.*; | |
public class Main { | |
static class Point implements Comparable<Point> { | |
long x; | |
long y; | |
public Point(long x, long y) { | |
this.x = x; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package bsh; | |
import org.junit.Test; | |
public class MemoryTest { | |
static public double printUsage() { | |
double cap = Runtime.getRuntime().totalMemory() - Runtime.getRuntime().freeMemory(); | |
cap /= 1048576; | |
System.out.printf("Usage %f MB\n", cap); |
NewerOlder