每个平台的信号定义或许有些不同。下面列出了POSIX中定义的信号。 Linux 使用34-64信号用作实时系统中。 命令man 7 signal提供了官方的信号介绍。
在POSIX.1-1990标准中定义的信号列表
import enum | |
import queue | |
import time | |
from collections import defaultdict | |
class Side(enum.Enum): | |
BUY = 0 | |
SELL = 1 | |
#!/usr/bin/env python | |
# -*- coding:utf-8 -*- | |
import sys | |
reload(sys) | |
sys.setdefaultencoding('utf-8') | |
from ws4py.client.threadedclient import WebSocketClient | |
import binascii | |
class WSClient(WebSocketClient): | |
def __init__(self, url, text, filename): |
[ | |
{ | |
"id": "d240e1be-38aa-4356-88b8-d1febb48d95e", | |
"name": "色色资源站", | |
"uri": "https://www.emiao026.com", | |
"httpApi": "http://sscj8.com/inc/api.php", | |
"httpsApi": "http://sscj8.com/inc/sapi.php", | |
"type": "综合性资源" | |
}, | |
{ |
每个平台的信号定义或许有些不同。下面列出了POSIX中定义的信号。 Linux 使用34-64信号用作实时系统中。 命令man 7 signal提供了官方的信号介绍。
在POSIX.1-1990标准中定义的信号列表
git config --global https.proxy http://127.0.0.1:1080 | |
git config --global https.proxy https://127.0.0.1:1080 | |
git config --global --unset http.proxy | |
git config --global --unset https.proxy | |
npm config delete proxy |