message stringlengths 6 474 | diff stringlengths 8 5.22k |
|---|---|
toml: Fixed some implicit conversions | @@ -262,7 +262,7 @@ static char * readString (char terminatorChar, bool isMultiline, Driver * driver
while (terminatorCount < terminatorMax)
{
- char c = input ();
+ char c = (char) input ();
if (c == terminatorChar)
{
if (terminatorChar == BASIC_TERMINATOR || terminatorChar == LITERAL_TERMINATOR)
@@ -463,7 +463,7 @@ s... |
Don't DeleteLocalRef prematurely. | @@ -419,9 +419,6 @@ JNIEXPORT jstring JNICALL Java_ai_catboost_CatBoostJNIImpl_catBoostModelPredict_
const auto row = (jfloatArray)jenv->GetObjectArrayElement(
jnumericFeaturesMatrix, i);
CB_ENSURE(jenv->IsSameObject(row, NULL) == JNI_FALSE, "got null row");
- Y_SCOPE_EXIT(jenv, row) {
- jenv->DeleteLocalRef(row);
- };... |
Delete duplication of standard io in node loader. | *
*/
-#if defined(WIN32) || defined(_WIN32)
-# define WIN32_LEAN_AND_MEAN
-# include <windows.h>
-# include <io.h>
-# ifndef dup
-# define dup _dup
-# endif
-# ifndef dup2
-# define dup2 _dup2
-# endif
-# ifndef STDIN_FILENO
-# define STDIN_FILENO _fileno(stdin)
-# endif
-# ifndef STDOUT_FILENO
-# define STDOUT_FILENO ... |
Added load swUpdateStateFromDb() | @@ -590,6 +590,14 @@ static int sqliteLoadConfigCallback(void *user, int ncols, char **colval , char
d->gwProxyPort = port;
}
}
+ else if (strcmp(colval[0], "swupdatestate") == 0)
+ {
+ if (!val.isEmpty() && ok)
+ {
+ d->gwConfig["swupdatestate"] = val;
+ d->gwSwUpdateState = val;
+ }
+ }
return 0;
}
@@ -618,7 +626,7 @... |
remove BTM_WBS_INCLUDED for bta_hf_client_version select | @@ -232,11 +232,7 @@ const tBTA_HF_CLIENT_ST_TBL bta_hf_client_st_tbl[] = {
bta_hf_client_st_closing
};
-#if BTM_WBS_INCLUDED
const char *bta_hf_client_version = "1.6";
-#else
-const char *bta_hf_client_version = "1.5";
-#endif
/* HF Client control block */
#if BTA_DYNAMIC_MEMORY == FALSE
|
Vacuum should operate on auxiliary tables in utility mode
Without this commit auxiliary tables such as toast and aoseg are skipped during
vacuum when run in utility mode (such as during pg_upgrade). | @@ -2408,8 +2408,13 @@ vacuum_rel(Relation onerel, Oid relid, VacuumStmt *vacstmt, LOCKMODE lmode,
* still hold the session lock on the master table. We do this in
* cleanup phase when it's AO table or in prepare phase if it's an
* empty AO table.
+ *
+ * A VacuumStmt object for secondary toast relation is constructed ... |
LICENSE: add system/cu
Add license for system/cu to LICENSE file | @@ -621,3 +621,35 @@ apps/wireless/wapi
NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+apps/system/cu
+=============
+
+ Copyright (C) 2014 sysmocom - s.f.m.c. GmbH. All rights reserved.
+ Author: Harald Welte <hwelte@sysmocom.de>
+
+ Red... |
doc: add links + other small changes for FOSDEM talks | @@ -32,21 +32,21 @@ The highlights of this release are:
### Fosdem Talk about Elektra in Main Track
We are happy to announce that there will be a talk about
-Elektra in one of the main tracks of [Fosdem 2018](https://fosdem.org/2018):
+Elektra in one of the [main tracks of Fosdem 2018](https://fosdem.org/2018/schedule/... |
Trying to solve bootstrap (again). | @@ -48,15 +48,13 @@ add_custom_target(${target}
if(NOT OPTION_BUILD_GUIX)
add_custom_target(${target}_depends
- WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}
+ WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}/lib
COMMAND ${CMAKE_COMMAND} -E echo "Installing ${target} dependencies"
- COMMAND ${CMAKE_COMMAND} -E copy ${CMAK... |
Some comments in configure.ac | @@ -18,7 +18,7 @@ dnl # where:
dnl # - library code modified: revision++
dnl # - interfaces changed/added/removed: current++ and revision=0
dnl # - interfaces added: age++
-dnl # - interfaces removed: age=0
+dnl # - interfaces removed or changed: age=0
dnl # *please update only once, before a formal release, not for ea... |
Fix Coverity-detected deadlock condition - need to use _papplSystemAddEventNoLock in device open
loop since printer rwlock is held. | @@ -989,7 +989,9 @@ start_job(pappl_job_t *job) // I - Job
{
job->state = IPP_JSTATE_PENDING;
- papplSystemAddEvent(job->system, job->printer, job, PAPPL_EVENT_JOB_STATE_CHANGED, NULL);
+ pthread_rwlock_rdlock(&job->rwlock);
+ _papplSystemAddEventNoLock(job->system, job->printer, job, PAPPL_EVENT_JOB_STATE_CHANGED, NUL... |
Support '-c' with feedback-driven fuzzing | @@ -515,11 +515,17 @@ static void fuzz_fuzzLoop(honggfuzz_t * hfuzz, fuzzer_t * fuzzer)
if (fuzzer->state == _HF_STATE_DYNAMIC_PRE) {
fuzzer->flipRate = 0.0f;
+ if (hfuzz->externalCommand) {
+ if (!fuzz_prepareFileExternally(hfuzz, fuzzer)) {
+ LOG_F("fuzz_prepareFileExternally() failed");
+ }
+ } else {
if (fuzz_prepa... |
nimble/ll: Fix return value | @@ -1685,7 +1685,7 @@ ble_ll_sched_aux_scan(struct ble_mbuf_hdr *ble_hdr,
struct ble_ll_scan_sm *scansm,
struct ble_ll_aux_data *aux_scan)
{
- int rc;
+ int rc = 1;
os_sr_t sr;
uint32_t off_ticks;
uint32_t off_rem_usecs;
@@ -1749,7 +1749,6 @@ ble_ll_sched_aux_scan(struct ble_mbuf_hdr *ble_hdr,
* anything. We can make i... |
Remove unnecesary close statement. | @@ -4388,6 +4388,8 @@ void node_loader_impl_destroy_safe(napi_env env, loader_impl_async_destroy_safe
node_loader_impl_exception(env, status);
+ /* Clear event loop */
+ {
/* Stop event loop */
uv_stop(node_impl->thread_loop);
@@ -4405,6 +4407,9 @@ void node_loader_impl_destroy_safe(napi_env env, loader_impl_async_dest... |
reset mask at reset detection | @@ -711,6 +711,11 @@ error_return_t MsgAlloc_IsReseted(void)
PortMng_Init();
// We need to reset MsgAlloc
MsgAlloc_Init(NULL);
+ ctx.Decay = 0;
+ for (uint16_t i = 0; i < MASK_SIZE; i++)
+ {
+ ctx.Mask[i] = 0;
+ }
return SUCCEED;
}
return FAILED;
|
implement OP_OCLASS. | @@ -2424,6 +2424,21 @@ static inline void op_range_exc( mrbc_vm *vm, mrbc_value *regs EXT )
}
+//================================================================
+/*! OP_OCLASS
+
+ R[a] = ::Object
+*/
+static inline void op_oclass( mrbc_vm *vm, mrbc_value *regs EXT )
+{
+ FETCH_B();
+
+ mrbc_decref(®s[a]);
+ regs[a]... |
Added missing dump option (parser) | @@ -12,7 +12,7 @@ p:flag("--emit-c", "Generate a .c file instead of an .so file")
p:flag("--emit-asm", "Generate a .s file instead of an .so file")
p:flag("--compile-c", "Compile a .c file generated by --emit-c")
p:option("--dump", "Print the ast from a given compiler pass"):choices(
- { "checker", "ir", "uninitialized... |
timeout option in redisConnectWithOptions should be on connect only
When connecting with a timeout, we shouldn't also call `redisSetTimeout` which will implement a timeout for commands.
See related issue | @@ -790,9 +790,7 @@ redisContext *redisConnectWithOptions(const redisOptions *options) {
// Unknown type - FIXME - FREE
return NULL;
}
- if (options->timeout != NULL && (c->flags & REDIS_BLOCK) && c->fd != REDIS_INVALID_FD) {
- redisContextSetTimeout(c, *options->timeout);
- }
+
return c;
}
|
Use path variables: cc2538 | @@ -52,4 +52,4 @@ $(LDSCRIPT): $(SOURCE_LDSCRIPT) FORCE | $(OBJECTDIR)
$(TRACE_CC)
$(Q)$(CC) $(LDGENFLAGS) $< | grep -v '^\s*#\s*pragma\>' > $@
-include $(ARCH_PATH)/cpu/arm/cortex-m/cm3/Makefile.cm3
+include $(CONTIKI)/$(CONTIKI_NG_CM3_DIR)/Makefile.cm3
|
Narrower logging, more details. | @@ -668,21 +668,19 @@ struct ws_on_data_args_s {
uint8_t is_text;
};
void *ws_on_data_inGIL(void *args_) {
- fprintf(stderr, "INFO: iodine entered GIL\n");
struct ws_on_data_args_s *a = args_;
VALUE handler = get_handler(a->ws);
if (!handler) {
fprintf(stderr, "ERROR: iodine can't find Websocket handler!\n");
return NU... |
SOVERSION bump to version 2.13.6 | @@ -67,7 +67,7 @@ set(LIBYANG_VERSION ${LIBYANG_MAJOR_VERSION}.${LIBYANG_MINOR_VERSION}.${LIBYANG_
# set version of the library
set(LIBYANG_MAJOR_SOVERSION 2)
set(LIBYANG_MINOR_SOVERSION 13)
-set(LIBYANG_MICRO_SOVERSION 5)
+set(LIBYANG_MICRO_SOVERSION 6)
set(LIBYANG_SOVERSION_FULL ${LIBYANG_MAJOR_SOVERSION}.${LIBYANG_M... |
Add NULL check in send_tcp function
Pointer 'conn' which was dereferenced at api_msg.c:330 is compared to NULL value at api_msg.c:336.
If conn is NULL, ERR_ARG will be returned. | @@ -327,6 +327,10 @@ static err_t sent_tcp(void *arg, struct tcp_pcb *pcb, u16_t len)
LWIP_UNUSED_ARG(pcb);
LWIP_ASSERT("conn != NULL", (conn != NULL));
+ if (conn == NULL) {
+ return ERR_ARG;
+ }
+
if (conn->state == NETCONN_WRITE) {
do_writemore(conn);
} else if (conn->state == NETCONN_CLOSE) {
|
common: drop unnecessary line ending
CPRINTS() macro is already adding the newline character, no need to
include it explicitly.
BRANCH=none
TEST=vefied that Coral EC does not print this newline any more | @@ -27,7 +27,7 @@ void tablet_set_mode(int mode)
return;
tablet_mode = mode;
- CPRINTS("tablet mode %sabled\n", mode ? "en" : "dis");
+ CPRINTS("tablet mode %sabled", mode ? "en" : "dis");
hook_notify(HOOK_TABLET_MODE_CHANGE);
}
|
odissey: limit stream fill by readahead size | @@ -427,8 +427,15 @@ od_frontend_setup(od_client_t *client)
return OD_FE_OK;
}
+static inline int
+od_frontend_stream_hit_limit(od_client_t *client)
+{
+ od_instance_t *instance = client->system->instance;
+ return shapito_stream_used(&client->stream) >= instance->scheme.readahead;
+}
+
static inline void
-od_frontend_... |
system/trace: Check NOTERAM_GETTASKNAME existence directly | @@ -246,7 +246,7 @@ FAR static struct trace_dump_task_context_s *get_task_context(pid_t pid,
(*tctxp)->syscall_nest = 0;
(*tctxp)->name[0] = '\0';
-#if CONFIG_DRIVER_NOTERAM_TASKNAME_BUFSIZE > 0
+#ifdef NOTERAM_GETTASKNAME
{
struct noteram_get_taskname_s tnm;
int res;
|
optimize luv_thread_dumped | @@ -214,23 +214,11 @@ static int luv_thread_arg_error(lua_State *L) {
lua_typename(L, type), pos);
}
-// Copied from lstrlib.c in Lua 5.4.3
-//
-// luaL_buffinit might push stuff onto the stack (this is undocumented as of now),
-// so it must be called after lua_dump to ensure that the function to dump
-// is still on ... |
Forgot to rename _ENTITY_ENTVAR_COLLECTION constant. | @@ -54,6 +54,7 @@ typedef enum
_ENTITY_DIE_ON_LANDING,
_ENTITY_DROP,
_ENTITY_DUCK_STATE,
+ _ENTITY_ENTVAR_COLLECTION,
_ENTITY_ESCAPE_COUNT,
_ENTITY_EXISTS,
_ENTITY_EXPLODE,
@@ -142,7 +143,6 @@ typedef enum
_ENTITY_TURN_STATE,
_ENTITY_TURN_TIME,
_ENTITY_UPDATE_MARK,
- _ENTITY_VARIABLE_COLLECTION,
_ENTITY_WALK_STATE,
_EN... |
s5j/serial: fix trivial coding style issues
Fixes trivial coding style issues. | @@ -968,7 +968,9 @@ void up_lowputc(char ch)
while (1) {
/* Wait for the transmitter to be available */
while ((uart_getreg32(CONSOLE_DEV.priv, S5J_UART_UTRSTAT_OFFSET) &
- UART_UTRSTAT_TX_BUF_MASK) != UART_UTRSTAT_TX_BUF_EMPTY);
+ UART_UTRSTAT_TX_BUF_MASK) != UART_UTRSTAT_TX_BUF_EMPTY) {
+ /* Polling */
+ }
/*
* Disab... |
fix error omlink example | @@ -32,16 +32,7 @@ void setup()
init_joint_angle.push_back(0.0*DEG2RAD);
init_joint_angle.push_back(-90.0*DEG2RAD);
init_joint_angle.push_back(-160.0*DEG2RAD);
-
- dxl_angle.push_back(init_joint_angle.at(0));
- dxl_angle.push_back(-init_joint_angle.at(1));
- dxl_angle.push_back(init_joint_angle.at(2));
-
- manipulator.... |
doc: Remove disabled source-package-test | @@ -95,7 +95,6 @@ build:
* jenkins build [icc](https://build.libelektra.org/job/elektra-icc/) please
* jenkins build [libelektra](https://build.libelektra.org/jenkins/job/libelektra/) please
* jenkins build [local-installation](https://build.libelektra.org/job/elektra-local-installation/) please
-* jenkins build [sourc... |
Initial boot with brass.pill. | [mos ..^$]
::
$init
- :_ %_ ..^$
+ ::
+ :: this used to start the initial merge, which is now
+ :: not a necessary part of the boot sequence.
+ ::
+ :- ~
+ %_ ..^$
fat.ruf
?< (~(has by fat.ruf) p.q.hic)
(~(put by fat.ruf) p.q.hic [-(hun hen)]:[*room .])
==
- =+ [bos=(sein:title p.q.hic) can=(clan:title p.q.hic)]
- %- z... |
ble_mesh: stack: Apply the errata E16350 from Bluetooth SIG | @@ -840,6 +840,7 @@ static void prov_start(const uint8_t *data)
static void send_confirm(void)
{
+ uint8_t *local_conf = NULL;
PROV_BUF(cfm, 17);
BT_DBG("ConfInputs[0] %s", bt_hex(link.conf_inputs, 64));
@@ -872,13 +873,21 @@ static void send_confirm(void)
prov_buf_init(&cfm, PROV_CONFIRM);
+ local_conf = net_buf_simpl... |
py/emitglue: Change type of bit-field to explicitly unsigned mp_uint_t.
Some compilers can treat enum types as signed, in which case 3 bits is not
enough to encode all mp_raw_code_kind_t values. So change the type to
mp_uint_t. | @@ -40,7 +40,7 @@ typedef enum {
} mp_raw_code_kind_t;
typedef struct _mp_raw_code_t {
- mp_raw_code_kind_t kind : 3;
+ mp_uint_t kind : 3; // of type mp_raw_code_kind_t
mp_uint_t scope_flags : 7;
mp_uint_t n_pos_args : 11;
union {
|
Update: Memory.c: both eternal and event aspect is processed for input events, they get eternalized and eternals revises seperately | @@ -107,7 +107,7 @@ static bool Memory_containsEvent(Event *event)
//Add event for cycling through the system (inference and context)
//called by addEvent for eternal knowledge
-static bool Memory_addCyclingEvent(Event *e, double priority)
+static bool Memory_addCyclingEvent(Event *e, double priority, long currentTime)... |
OpenCanopy: Optimise cursor (re)drawing | @@ -678,10 +678,6 @@ GuiRedrawPointer (
STATIC UINT32 CursorOldY = 0;
CONST GUI_IMAGE *CursorImage;
- UINT32 MinX;
- UINT32 DeltaX;
- UINT32 MinY;
- UINT32 DeltaY;
UINT32 MaxWidth;
UINT32 MaxHeight;
@@ -694,51 +690,29 @@ GuiRedrawPointer (
);
ASSERT (CursorImage != NULL);
- //
- // TODO: Do we want to conditionally red... |
Prepare debian changelog for v0.9.0 tag
debian changelog for v0.9.0 tag | +bcc (0.9.0-1) unstable; urgency=low
+
+ * Adds support for BTF
+ * Uses libbpf common library to wrap syscall API
+ * Many bugfixes and new tools
+
+ -- Brenden Blanco <bblanco@gmail.com> Thu, 07 Mar 2019 17:00:00 +0000
+
bcc (0.8.0-1) unstable; urgency=low
* Support for kernel up to 5.0
|
Fix a type fixed a typo pointed out by | @@ -19,7 +19,7 @@ tanasinn (Works with firefox)
.br
mlterm (Works on each of X, win32/cygwin and framebuffer version)
.br
-XTerm (configured with --enable-sixel-graphics and lanuched with "-ti 340" option)
+XTerm (configured with --enable-sixel-graphics and launched with "-ti 340" option)
.br
yaft / yaftx (Works on fra... |
apps/speed.c: detect evp cipher 32-bit ctr overflow and reset iv | @@ -872,16 +872,23 @@ static int EVP_Update_loop(void *args)
loopargs_t *tempargs = *(loopargs_t **) args;
unsigned char *buf = tempargs->buf;
EVP_CIPHER_CTX *ctx = tempargs->ctx;
- int outl, count;
+ int outl, count, rc;
#ifndef SIGALRM
int nb_iter = save_count * 4 * lengths[0] / lengths[testnum];
#endif
- if (decrypt... |
Use storagePathP() instead of cfgOptionStr() to get base repo path.
cfgOptionStr() may not have the correct value if the repo is remote.
Use storagePathP() instead since it can ask the remote for the correct value when required. | @@ -6,6 +6,7 @@ Common Functions and Definitions for Repo Commands
#include "command/repo/common.h"
#include "common/debug.h"
#include "config/config.h"
+#include "storage/helper.h"
/**********************************************************************************************************************************/
Strin... |
set hcx-max = pmkideapolcount as default | @@ -1155,6 +1155,9 @@ static hashlist_t *zeigerbegin;
static hashlist_t *zeigerend;
static struct stat statinfo;
+if(lcmax == 0) lcmax = pmkideapolcount;
+if(lcmin > lcmax) return;
+
if(pmkideapoloutname != NULL)
{
if((fh_pmkideapol = fopen(pmkideapoloutname, "a")) == NULL)
@@ -1165,8 +1168,6 @@ if(pmkideapoloutname !=... |
Docs (from facil.io) | @@ -1043,6 +1043,10 @@ ssize_t sock_write2_fn(sock_write_info_s options) {
/* this extra work can be avoided if an error is already known to occur...
* but the extra complexity and branching isn't worth it, considering the
* common case should be that there's no expected error.
+ *
+ * It also important to point out th... |
Fix "wuffs gen" null pointer dereference | @@ -84,12 +84,14 @@ func doGenGenlib(wuffsRoot string, args []string, genlib bool) error {
h := genHelper{
wuffsRoot: wuffsRoot,
langs: langs,
- ccompilers: *ccompilersFlag,
cformatter: *cformatterFlag,
genlinenum: *genlinenumFlag,
skipgen: genlib && *skipgenFlag,
skipgendeps: *skipgendepsFlag,
}
+ if genlib {
+ h.ccom... |
fire and forget emulator | @@ -676,7 +676,8 @@ def logcat_process(filter = nil, device_flag = '-e', log_path = $applog_path)
if log_pids.empty?
puts 'Starting new logcat process'
data = process_filter(filter).join(' ')
- Thread.new { system("\"#{$adb}\" #{device_opts.join(' ')} logcat #{data} > \"#{log_path}\" ") }
+ pid = spawn("\"#{$adb}\" #{d... |
Analysis workflow, run from other shell. | @@ -166,6 +166,20 @@ jobs:
- uses: actions/checkout@v2
with:
submodules: false
+ - name: pwsh_windows
+ if: ${{ matrix.test_windows == 'yes' }}
+ run: |
+ pwd
+ cd ..
+ mkdir openssl
+ echo "curl openssl"
+ curl -L -k -s -S -o openssl-1.1.1j.tar.gz https://www.openssl.org/source/openssl-1.1.1j.tar.gz
+ tar xzf openssl-... |
add import statement to manual | @@ -173,7 +173,7 @@ have the same name. The body is a sequence of statements.
Here is the complete syntax of Titan in extended BNF. As usual in extended BNF, {A} means 0 or more As, and \[A\] means an optional A.
- program ::= {tlfunc | tlvar | tlrecord}
+ program ::= {tlfunc | tlvar | tlrecord | tlimport}
tlfunc ::= [... |
decision: add remark by | @@ -73,6 +73,7 @@ Improve documentation to make people more aware of these two problems:
Upon returning from `kdbGet`/`kdbSet`, set the keyname of parentKey to the key that actually is parent of the data that was loaded.
I.e. to the mountpoint of the backend that contains parentKey.
+`parentKey` is already an inout-typ... |
fixed problem with datetime extraction | @@ -397,8 +397,5 @@ static int pack_long(grib_accessor* a, const long* val, size_t *len)
err=select_datetime(a);
if (err) return err;
- err=grib_set_long(a->parent->h,self->doExtractSubsets,1);
- if (err) return err;
-
return err;
}
|
Remove unused and legacy functions in oos_macpong.c | @@ -190,31 +190,14 @@ bool icmpv6rpl_daoSent(void) {
return TRUE;
}
void icmpv6rpl_setMyDAGrank(dagrank_t rank) { return; }
-void icmpv6rpl_killPreferredParent(void) { return; }
void icmpv6rpl_updateMyDAGrankAndParentSelection(void) { return; }
-void icmpv6rpl_indicateRxDIO(OpenQueueEntry_t* msg) { return; }
void icmpv... |
windows/mpconfigport.h: Don't define restrict/inline/alignof for C++.
The C++ standard forbids redefining keywords, like inline and alignof, so
guard these definitions to avoid that, allowing to include the MicroPython
headers by C++ code. | @@ -228,9 +228,11 @@ extern const struct _mp_obj_module_t mp_module_time;
// CL specific definitions
+#ifndef __cplusplus
#define restrict
#define inline __inline
#define alignof(t) __alignof(t)
+#endif
#define PATH_MAX MICROPY_ALLOC_PATH_MAX
#define S_ISREG(m) (((m) & S_IFMT) == S_IFREG)
#define S_ISDIR(m) (((m) & S_I... |
vell: Change battery/AC current sense value
BRANCH=none
TEST=On Vell. Battery charging current ramp to 6.4A. | /* Charger defines */
#define CONFIG_CHARGER_ISL9241
#define CONFIG_CHARGE_RAMP_SW
-#define CONFIG_CHARGER_SENSE_RESISTOR 10
-#define CONFIG_CHARGER_SENSE_RESISTOR_AC 20
+#define CONFIG_CHARGER_SENSE_RESISTOR 5
+#define CONFIG_CHARGER_SENSE_RESISTOR_AC 10
/* Keyboard features */
#define CONFIG_KEYBOARD_FACTORY_TEST
|
added setPrioTile(..) method | @@ -98,14 +98,32 @@ public class Tile implements Comparable<Tile>
* @param y
* Y position in pixel
*/
- public static void copyTile(byte[] image8bpp, int imgW, byte[] tile8bpp, int x, int y, int size)
+ public static void setPrioTile(byte[] destImage8bpp, int imgW, int x, int y, int size)
+ {
+ int dstOff = (y * imgW) ... |
Log send error in client. | @@ -1205,6 +1205,16 @@ int quic_client(const char* ip_address_text, int server_port, const char * sni,
if (ret == 0 && send_length > 0) {
bytes_sent = sendto(fd, send_buffer, (int)send_length, 0,
(struct sockaddr*)&server_address, server_addr_length);
+
+ if (bytes_sent <= 0)
+ {
+ fprintf(stdout, "Cannot send packet t... |
Doc: virtio-blk: add description of boot device option
Add the description of option 'b' to indicate the boot device including
the bootable image. | @@ -63,8 +63,11 @@ Usage:
The device model configuration command syntax for virtio-blk is::
- -s <slot>,virtio-blk,<filepath>[,options]
+ -s <slot>,virtio-blk,[,b,]<filepath>[,options]
+- ``b``: when using ``vsbl`` as the virtual bootloader, use this
+ immediately after ``virtio-blk`` to specify it as a bootable
+ devi... |
Fix field used for SVN Downgrade Opt-In, Secure Erase Policy Opt-In, and FW Activate Opt-In
In a copy-paste-modify operation a field was missed in show-device for
SVN Downgrade Opt-In, Secure Erase Policy Opt-In, and FW Activate Opt-In. | @@ -765,7 +765,7 @@ ShowDimms(
pSVNDowngradeStr = CatSPrint(NULL, FORMAT_STR, UNKNOWN_ATTRIB_VAL);
}
else {
- pSVNDowngradeStr = SVNDowngradeOptInToString(gNvmDimmCliHiiHandle, pDimms[DimmIndex].S3ResumeOptIn);
+ pSVNDowngradeStr = SVNDowngradeOptInToString(gNvmDimmCliHiiHandle, pDimms[DimmIndex].SVNDowngradeOptIn);
}
... |
error: improved dump file error message | @@ -188,7 +188,11 @@ int unserialise (std::istream & is, ckdb::Key * errorKey, ckdb::KeySet * ks)
}
else
{
- ELEKTRA_SET_INSTALLATION_ERRORF (errorKey, "Wrong version detected in dumpfile: %s", command.c_str ());
+ ELEKTRA_SET_VALIDATION_SYNTACTIC_ERRORF (
+ errorKey,
+ "Unknown command detected in dumpfile: %s.\nMaybe... |
Fix possible infinite loop in BN_mod_sqrt()
The calculation in some cases does not finish for non-prime p.
This fixes CVE-2022-0778.
Based on patch by David Benjamin | @@ -14,7 +14,8 @@ BIGNUM *BN_mod_sqrt(BIGNUM *in, const BIGNUM *a, const BIGNUM *p, BN_CTX *ctx)
/*
* Returns 'ret' such that ret^2 == a (mod p), using the Tonelli/Shanks
* algorithm (cf. Henri Cohen, "A Course in Algebraic Computational Number
- * Theory", algorithm 1.5.1). 'p' must be prime!
+ * Theory", algorithm 1.... |
messages: yank 1:1 DM invitations
Fixes urbit/landscape#497 | @@ -125,8 +125,10 @@ export function ResourceSkeleton(props: ResourceSkeletonProps): ReactElement {
);
const ExtraControls = () => {
- if (workspace === '/messages' && group.hidden)
+ if (workspace === '/messages')
return (
+ <>
+ {group.members.size >= 3 ?
<Dropdown
flexShrink={0}
dropWidth='300px'
@@ -142,21 +144,7 @... |
Correctly handle unsupported client cert on Windows Server 2022 | @@ -772,6 +772,10 @@ CxPlatTlsSetClientCertPolicy(
"SetCredentialsAttributesW(SECPKG_ATTR_CLIENT_CERT_POLICY) failed");
}
+ if (SecStatus == SEC_E_UNSUPPORTED_FUNCTION) {
+ return QUIC_STATUS_NOT_SUPPORTED;
+ }
+
return SecStatusToQuicStatus(SecStatus);
}
@@ -1402,6 +1406,9 @@ CxPlatTlsSecConfigCreate(
if (CredConfig->... |
Fix all.sh dependency on DTLS connection ID
Ensure MBEDTLS_SSL_DTLS_CONNECTION_ID_COMPAT is unset where
MBEDTLS_SSL_DTLS_CONNECTION_ID is unset. | @@ -1238,6 +1238,7 @@ component_test_full_no_cipher () {
scripts/config.py unset MBEDTLS_PSA_CRYPTO_STORAGE_C
scripts/config.py unset MBEDTLS_SSL_DTLS_ANTI_REPLAY
scripts/config.py unset MBEDTLS_SSL_DTLS_CONNECTION_ID
+ scripts/config.py unset MBEDTLS_SSL_DTLS_CONNECTION_ID_COMPAT
scripts/config.py unset MBEDTLS_SSL_PR... |
Fix single precision Truncate___STATIC__R4__R4 | float d = stack.Arg0().NumericByRefConst().r4;
float res = 0.0;
- float retVal = modff(d, &res);
+ modff(d, &res);
- stack.SetResult_R4( retVal );
+ stack.SetResult_R4( res );
NANOCLR_NOCLEANUP_NOLABEL();
|
Fix os table in sandbox being overwritten | @@ -402,7 +402,7 @@ void LuaSandbox::InitializeIOForSandbox(Sandbox& aSandbox, const std::string& ac
// add in rename and remove repacements for os lib
{
const auto cOS = cGlobals["os"].get<sol::table>();
- sol::table osSB(luaView, sol::create);
+ sol::table osSB = sbEnv["os"].get<sol::table>();
osSB["rename"] = [cOS, ... |
Fix test_nsalloc_realloc_long_context_in_dtd() to work in | @@ -11728,7 +11728,7 @@ START_TEST(test_nsalloc_realloc_long_context_in_dtd)
"ABCDEFGHIJKLMNOPABCDEFGHIJKLMNOPABCDEFGHIJKLMNOPABCDEFGHIJKLMNOP"
":doc>";
ExtOption options[] = {
- { "foo/First", "Hello world" },
+ { XCS("foo/First"), "Hello world" },
{ NULL, NULL }
};
int i;
|
fsp: Skip sysdump retrieval only in MPIPL boot
It seems we should continue to retrieval SYSDUMP except in MPIPL boot.
Fixes: (fsp: Ignore platform dump notification on P9) | @@ -822,11 +822,19 @@ static bool fsp_sys_dump_notify(uint32_t cmd_sub_mod, struct fsp_msg *msg)
*/
static void check_ipl_sys_dump(void)
{
- struct dt_node *dump_node;
+ struct dt_node *dump_node, *opal_node;
uint32_t dump_id, dump_size;
- if (proc_gen >= proc_gen_p9)
+ if (proc_gen >= proc_gen_p9) {
+ opal_node = dt_f... |
Set writefds too (issue | @@ -204,7 +204,7 @@ char *ReadFromProcess(const char *command, unsigned timeout_ms)
tv.tv_usec = (diff_ms % 1000) * 1000;
/* Wait for data (or a timeout). */
- rc = select(fds[0] + 1, &fs, NULL, &fs, &tv);
+ rc = select(fds[0] + 1, &fs, &fs, &fs, &tv);
if(rc == 0) {
close(fds[0]);
/* Timeout */
|
Additional safeguard in acp_remove_core | @@ -666,6 +666,7 @@ void cleaning_policy_acp_remove_core(ocf_cache_t cache,
uint64_t i;
ENV_BUG_ON(acp->chunks_total < acp->num_chunks[core_id]);
+ ENV_BUG_ON(!acp->chunk_info[core_id]);
if (acp->state.in_progress && acp->state.chunk->core_id == core_id) {
acp->state.in_progress = false;
|
Drawcia: Remove CONFIG_SYSTEM_UNLOCKED
Drawcia has progressed enough in development that we no longer need to
force an unlocked state on the EC.
BRANCH=None
TEST=make -j buildall | #undef GPIO_VOLUME_UP_L
#define GPIO_VOLUME_UP_L GPIO_VOLUP_BTN_ODL_HDMI_HPD
-/* System unlocked in early development */
-#define CONFIG_SYSTEM_UNLOCKED
-
/* Battery */
#define CONFIG_BATTERY_FUEL_GAUGE
|
vcl: fix event triggered after closing connections.
Improve the accuracy of epoll event(EPOLLRDHUP).
Type: fix | @@ -3089,8 +3089,22 @@ vcl_epoll_wait_handle_mq_event (vcl_worker_t * wrk, session_event_t * e,
sid = s->session_index;
session_events = s->vep.ev.events;
add_event = 1;
- events[*num_ev].events = EPOLLHUP | EPOLLRDHUP;
+ if (EPOLLRDHUP & session_events)
+ {
+ /* If app can distinguish between RDHUP and HUP,
+ * we mak... |
mangoapp: reuse shutdown() helper
Use the helper across the board, instead of open-coding it. | @@ -330,11 +330,8 @@ int main(int, char**)
}
// Cleanup
- ImGui_ImplOpenGL3_Shutdown();
- ImGui_ImplGlfw_Shutdown();
- ImGui::DestroyContext();
+ shutdown(window);
- glfwDestroyWindow(window);
glfwTerminate();
return 0;
|
gall: retry if agent fails first build | =/ tim (slav da+dat)
=/ =beak [(slav %p her) desk da+tim]
?> ?=([?(%b %c) %writ *] sign-arvo)
- ?^ p.sign-arvo
+ |^ ^+ mo-core
+ ?~ p.sign-arvo
+ (fail leaf+"gall: failed to build agent {<dap>}" ~)
=/ cag=cage r.u.p.sign-arvo
?. =(%vase p.cag)
- (mo-give %onto |+[leaf+"gall: invalid %writ {<p.cag>} for {<dap>}"]~)
+ (f... |
Update xdagwallet.vcxproj.filters | <ClCompile Include="CEditWalletAddr.cpp" />
<ClCompile Include="CEditWalletAddrMine.cpp" />
<ClCompile Include="ToolTip.cpp" />
- <ClCompile Include="utils.c" />
</ItemGroup>
<ItemGroup>
<ClInclude Include="xdagwallet.h" />
<ClInclude Include="CEditWalletAddr.h" />
<ClInclude Include="CEditWalletAddrMine.h" />
<ClInclu... |
this shall be ready to go! | @@ -82,14 +82,14 @@ objects;
#X obj 181 444 cyclone/!/;
#X obj 181 464 cyclone/!/~;
#X obj 180 539 cyclone/+=~;
+#X text 64 176 You can also find alphanumeric versions of these objects
+(whith the same name alias as in Max/MSP) as single binaries outside
+this sub library. For more info on each operator \, check their ... |
build/rtl8721csm: Enable error logs of binary manager
Enable error logs of binary manager to make it easier to know the causes of operation failure. | @@ -1025,7 +1025,9 @@ CONFIG_DEBUG_ERROR=y
# Subsystem Debug Options
#
# CONFIG_DEBUG_BINFMT is not set
-# CONFIG_DEBUG_BINMGR is not set
+# CONFIG_DEBUG_BINARY_COMPRESSION is not set
+CONFIG_DEBUG_BINMGR=y
+CONFIG_DEBUG_BINMGR_ERROR=y
# CONFIG_DEBUG_FS is not set
# CONFIG_DEBUG_LIB is not set
# CONFIG_DEBUG_MM is not ... |
py/modio: Use correct config macro to enable resource_stream function. | @@ -131,7 +131,7 @@ STATIC const mp_obj_type_t bufwriter_type = {
};
#endif // MICROPY_PY_IO_BUFFEREDWRITER
-#if MICROPY_MODULE_FROZEN_STR
+#if MICROPY_PY_IO_RESOURCE_STREAM
STATIC mp_obj_t resource_stream(mp_obj_t package_in, mp_obj_t path_in) {
VSTR_FIXED(path_buf, MICROPY_ALLOC_PATH_MAX);
size_t len;
@@ -179,7 +179,... |
Remove ocf_metadata_hash_entries_hash() | @@ -2347,18 +2347,6 @@ static void ocf_metadata_hash_set_hash(struct ocf_cache *cache,
ocf_metadata_error(cache);
}
-/*
- * Hash Table - Get Entries
- */
-static ocf_cache_line_t ocf_metadata_hash_entries_hash(
- struct ocf_cache *cache)
-{
- struct ocf_metadata_hash_ctrl *ctrl
- = (struct ocf_metadata_hash_ctrl *) cac... |
Don't clobber postmaster sigmask in dsm_impl_resize.
Commit intended to block signals in regular backends that
allocate DSM segments, but dsm_impl_resize() is also reached by
dsm_postmaster_startup(). It's not OK to clobber the postmaster's
signal mask, so only manipulate the signal mask when under the
postmaster.
Bac... | @@ -352,6 +352,7 @@ dsm_impl_posix_resize(int fd, off_t size)
* allowed SIGUSR1 to interrupt us repeatedly (for example, due to recovery
* conflicts), the retry loop might never succeed.
*/
+ if (IsUnderPostmaster)
PG_SETMASK(&BlockSig);
/* Truncate (or extend) the file to the requested size. */
@@ -390,9 +391,12 @@ ds... |
fix omc example error | @@ -105,7 +105,7 @@ void initManipulator()
chain.initKinematics(kinematics);
#ifdef PLATFORM ////////////////////////////////////Actuator init
chain.initActuator(actuator);
- chain.setActuatorPositionControlMode(5, 200, 50);
+ chain.setActuatorControlMode();
uint32_t baud_rate = BAUD_RATE;
void *p_baud_rate = &baud_rat... |
HTTP parser: excluding leading and trailing tabs from field values.
As required by RFC 7230. | @@ -618,7 +618,9 @@ nxt_http_parse_field_value(nxt_http_request_parse_t *rp, u_char **pos,
return NXT_AGAIN;
}
- if (*p != ' ') {
+ ch = *p;
+
+ if (ch != ' ' && ch != '\t') {
break;
}
@@ -662,7 +664,8 @@ nxt_http_parse_field_value(nxt_http_request_parse_t *rp, u_char **pos,
*pos = p;
if (nxt_fast_path(p != start)) {
-... |
nshlib/nsh_slcd.c: Use file descriptor zero for the NSH console. | @@ -93,7 +93,7 @@ static int nsh_clone_console(FAR struct console_stdio_s *pstate)
/* Use /dev/console as console input */
- pstate->cn_confd = fd;
+ pstate->cn_confd = 0;
/* Create a standard C stream on the console device */
|
core/cache: do split appoint + get processing | @@ -908,6 +908,39 @@ int kdbGet (KDB * handle, KeySet * ks, Key * parentKey)
// set_bit (ks->flags, KS_FLAG_MMAP_ARRAY);
ksAppend (ks, cache); // TODO: test ksAppend because correctness
output_keyset (global);
+
+
+ // Appoint keys (some in the bypass)
+ if (splitAppoint (split, handle, ks) == -1)
+ {
+ clearError (par... |
Drop unneeded tox steps. | @@ -24,10 +24,6 @@ jobs:
run: sudo apt install -y apache2-dev
- name: "Update pip"
run: python -m pip install --upgrade pip setuptools
- #- name: "Install tox dependencies"
- # run: python -m pip install --upgrade tox tox-gh-actions
- #- name: "Run tox for ${{ matrix.python-version }}"
- # run: "python -m tox -vvv"
- n... |
Add more tests for Julian <-> datetime conversion | @@ -181,12 +181,47 @@ static void Test3()
}
}
+static void Test4()
+{
+ const long iyear = 1582;
+
+ TestDateTime(iyear, 9, 1, 1, 0, 0);
+ TestDateTime(iyear, 9, 2, 1, 0, 0);
+ TestDateTime(iyear, 9, 3, 1, 0, 0);
+ TestDateTime(iyear, 9, 4, 1, 0, 0);
+ TestDateTime(iyear, 9, 4, 16, 0, 0);
+
+ /* TODO */
+ /* TestDateTi... |
doc: updated man pages for the Qt-Gui | .\" generated with Ronn-NG/v0.10.1
.\" http://github.com/apjanke/ronn-ng/tree/0.10.1.pre1
-.TH "README" "" "April 2021" ""
+.TH "README" "" "December 2021" ""
.SH "Introduction"
The tool \fBqt\-gui\fR offers a graphical interface for users of Elektra\. It allows users to create, manage, edit, and delete keys stored in ... |
Add tests for peg/find and peg/find-all | @@ -332,4 +332,10 @@ neldb\0\0\0\xD8\x05printG\x01\0\xDE\xDE\xDE'\x03\0marshal_tes/\x02
(assert (= :keyword (keyword/slice "some_keyword_slice" 5 12)) "keyword slice")
(assert (= 'symbol (symbol/slice "some_symbol_slice" 5 11)) "symbol slice")
+# Peg find and find-all
+(def p "/usr/local/bin/janet")
+(assert (= (peg/fi... |
esp_wifi: update esp_wifi_internal_set_fix_rate usage | @@ -251,6 +251,7 @@ esp_err_t esp_wifi_internal_set_sta_ip(void);
*
* @attention 1. If fixed rate is enabled, both management and data frame are transmitted with fixed rate
* @attention 2. Make sure that the receiver is able to receive the frame with the fixed rate if you want the frame to be received
+ * @attention 3.... |
Refactor to catch errors | @@ -51,13 +51,17 @@ def ACCTest(String label, String compiler, String build_type, List extra_cmake_a
if (fresh_install) {
sh """
sudo bash scripts/ansible/install-ansible.sh
- # Run ACC Playbook
- for i in 1 2 3 4 5
- do
- sudo \$(which ansible-playbook) scripts/ansible/oe-contributors-acc-setup.yml && break
- sleep 60... |
Verify input data lengths. | @@ -100,7 +100,8 @@ void mbedtls_ccm_free( mbedtls_ccm_context *ctx )
#define CCM_STATE__CLEAR 0
#define CCM_STATE__STARTED (1 << 0)
#define CCM_STATE__LENGHTS_SET (1 << 1)
-#define CCM_STATE__ERROR (1 << 2)
+#define CCM_STATE__AUTH_DATA_FINISHED (1 << 2)
+#define CCM_STATE__ERROR (1 << 4)
/*
* Encrypt or decrypt a par... |
.github/workflows/ports_unix.yml: reproducible: Update for Pycopy. | @@ -35,7 +35,7 @@ jobs:
env:
SOURCE_DATE_EPOCH: 1234567890
- name: Check reproducible build date
- run: echo | ports/unix/micropython-minimal -i | grep 'on 2009-02-13;'
+ run: echo | ports/unix/pycopy-minimal -i | grep 'on 2009-02-13;'
standard:
runs-on: ubuntu-latest
|
Deny pgx v3 for cloud/mdb | @@ -85,6 +85,8 @@ ALLOW .* -> vendor/github.com/jackc/pgx/v4
ALLOW .* -> vendor/github.com/jackc/pgconn
ALLOW .* -> vendor/github.com/jackc/pgtype
# v3 is to be deprecated in the future
+# deny v3 for MDB, responsible: @sidh
+DENY cloud/mdb -> vendor/github.com/jackc/pgx
ALLOW .* -> vendor/github.com/jackc/pgx
# databa... |
NULL sample_buf to prevent re-use after free | @@ -1996,6 +1996,7 @@ static ACVP_RESULT acvp_get_result_test_session(ACVP_CTX *ctx, char *session_url
ACVP_LOG_ERR("%s", ctx->sample_buf);
}
free(ctx->sample_buf);
+ ctx->sample_buf = NULL;
}
}
}
|
Fix external_entity_param() to work for builds | @@ -4263,14 +4263,14 @@ external_entity_param(XML_Parser parser,
if (ext_parser == NULL)
fail("Could not create external entity parser");
- if (!strcmp(systemId, "004-1.ent")) {
+ if (!xcstrcmp(systemId, XCS("004-1.ent"))) {
if (_XML_Parse_SINGLE_BYTES(ext_parser, text1, strlen(text1),
XML_TRUE) != XML_STATUS_ERROR)
fa... |
chat: equally size both code + s3 buttons | @@ -387,7 +387,7 @@ export class ChatInput extends Component {
</div>
<div style={{ height: '16px', width: '16px', flexBasis: 16, marginTop: 10 }}>
<img
- style={{ filter: state.code && 'invert(100%)', height: '100%', width: '100%' }}
+ style={{ filter: state.code && 'invert(100%)', height: '14px', width: '14px' }}
onC... |
build: bump to v2.0.2 | @@ -4,7 +4,7 @@ project(fluent-bit)
# Fluent Bit Version
set(FLB_VERSION_MAJOR 2)
set(FLB_VERSION_MINOR 0)
-set(FLB_VERSION_PATCH 1)
+set(FLB_VERSION_PATCH 2)
set(FLB_VERSION_STR "${FLB_VERSION_MAJOR}.${FLB_VERSION_MINOR}.${FLB_VERSION_PATCH}")
set(CMAKE_POSITION_INDEPENDENT_CODE ON)
|
[build/scripts] support recursive dir copying in fs_tools (ignoring symlinks) | @@ -9,6 +9,9 @@ if __name__ == '__main__':
if mode == 'copy':
shutil.copy(args[0], args[1])
+ elif mode == 'copy_tree_no_link':
+ dst = args[1]
+ shutil.copytree(args[0], dst, ignore=lambda dirname, names: [n for n in names if os.path.islink(os.path.join(dirname, n))])
elif mode == 'copy_files':
src = args[0]
dst = arg... |
added action name into the bitstream file name | set root_dir $::env(SNAP_HARDWARE_ROOT)
set logs_dir $::env(LOGS_DIR)
set img_dir $::env(IMG_DIR)
+set action_root $::env(ACTION_ROOT)
set sdram_used $::env(SDRAM_USED)
set nvme_used $::env(NVME_USED)
set bram_used $::env(BRAM_USED)
@@ -43,7 +44,15 @@ set ::env(WIDTHCOL4) $widthCol4
##
## generating bitstream name
set ... |
simd128: any_true implementations for Arm | @@ -3371,22 +3371,31 @@ simde_wasm_v128_any_true (simde_v128_t a) {
return wasm_v128_any_true(a);
#else
simde_v128_private a_ = simde_v128_to_private(a);
- int_fast32_t r = 0;
+ simde_bool r = 0;
#if defined(SIMDE_X86_SSE4_1_NATIVE)
r = !_mm_test_all_zeros(a_.sse_m128i, _mm_set1_epi32(~INT32_C(0)));
#elif defined(SIMDE... |
Change the way Elektra is installed | @@ -82,10 +82,10 @@ docker run -it --rm \
After starting the container, you should be automatically inside it in the working directory `/home/jenkins/workspace`.
-Create folder for building the project and `cd` to it like this:
+Create folder for building the project, `cd` to it and create another folder where Elektra ... |
Enable ThreadSanitizer in CI tests
Adds an entry with -fsanitize=thread to the Travis CI build matrix. | @@ -19,7 +19,13 @@ matrix:
include:
- compiler: clang
+ env: KVZ_TEST_VALGRIND=1
+
+ - compiler: clang
+ env: CFLAGS='-fsanitize=thread'
+
- compiler: gcc-4.8
+ env: KVZ_TEST_VALGRIND=1
# We have some Mac specific code and Mac sometimes has odd build issues.
- os: osx
@@ -29,6 +35,7 @@ matrix:
- ./autogen.sh
- ./config... |
Add test for EVP_PKEY_Q_keygen
Test for | @@ -442,6 +442,19 @@ static int test_ecx_tofrom_data_select(void)
}
#endif
+#ifndef OPENSSL_NO_SM2
+static int test_sm2_tofrom_data_select(void)
+{
+ int ret;
+ EVP_PKEY *key = NULL;
+
+ ret = TEST_ptr(key = EVP_PKEY_Q_keygen(mainctx, NULL, "SM2"))
+ && TEST_true(do_pkey_tofrom_data_select(key, "SM2"));
+ EVP_PKEY_free... |
util/gen_emmc_transfer_data.c: Format with clang-format
BRANCH=none
TEST=none | @@ -46,8 +46,7 @@ void header_format(FILE *fin, FILE *fout)
"#define __CROS_EC_BOOTBLOCK_DATA_H\n"
"\n"
"#include <stdint.h>\n"
- "\n"
- );
+ "\n");
fprintf(fout,
"static const uint8_t %s[] __attribute__((aligned(4))) =\n"
@@ -69,13 +68,14 @@ void header_format(FILE *fin, FILE *fout)
fprintf(fout, "\t/* Block %d (%ld) ... |
Connect debug clocks when debug is tied off | @@ -256,8 +256,9 @@ class WithTiedOffDebug extends OverrideIOBinder({
Debug.tieoffDebug(debugPortOpt, resetctrlOpt, Some(psdPort))(system.p)
// tieoffDebug doesn't actually tie everything off :/
debugPortOpt.foreach { d =>
- d.clockeddmi.foreach({ cdmi => cdmi.dmi.req.bits := DontCare })
+ d.clockeddmi.foreach({ cdmi =... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.