YAMAMOTO Takashi
|
2829ecd18a
|
arch/arm/src/sam34/sam_spi.c: Fix syslog formats
|
2020-12-06 07:41:37 -06:00 |
|
YAMAMOTO Takashi
|
5461bb2462
|
arch/arm/src/sam34/sam4s_nand.c: Fix syslog formats
|
2020-12-06 07:41:37 -06:00 |
|
YAMAMOTO Takashi
|
6c269e8360
|
drivers/mtd/mtd_onfi.c: Fix syslog formats
|
2020-12-06 07:41:37 -06:00 |
|
YAMAMOTO Takashi
|
fcca968c0b
|
arch/arm/src/sam34/sam_wdt.c: Fix syslog formats
|
2020-12-06 07:41:37 -06:00 |
|
YAMAMOTO Takashi
|
f22982f7e6
|
arch/arm/src/sam34/sam_wdt.c: Appease nxstyle
|
2020-12-06 07:41:37 -06:00 |
|
YAMAMOTO Takashi
|
8eb0712dec
|
arch/arm/src/sam34/sam_hsmci.c: Fix syslog formats
|
2020-12-06 07:41:37 -06:00 |
|
YAMAMOTO Takashi
|
8af7af12b3
|
arch/arm/src/sama5/sam_emacb.c: Fix a syslog format
|
2020-12-06 07:41:37 -06:00 |
|
YAMAMOTO Takashi
|
2d78501e9a
|
drivers/audio/audio_null.c: Fix a syslog format
|
2020-12-06 07:41:37 -06:00 |
|
YAMAMOTO Takashi
|
3599120dbb
|
boards/arm/sama5/sama5d4-ek/src/sam_at25.c: Fix a syslog format
|
2020-12-06 07:41:37 -06:00 |
|
YAMAMOTO Takashi
|
b69dbbcbcf
|
boards/arm/sama5/sama5d4-ek/src/sam_at25.c: Appease nxstyle
|
2020-12-06 07:41:37 -06:00 |
|
YAMAMOTO Takashi
|
83b24f0382
|
arch/arm/src/armv7-a/arm_syscall.c: Fix syslog formats
|
2020-12-06 07:41:37 -06:00 |
|
YAMAMOTO Takashi
|
0117d2b2f6
|
libs/libc/machine/arm/armv7-a/arch_elf.c: Fix syslog formats
|
2020-12-06 07:41:37 -06:00 |
|
YAMAMOTO Takashi
|
51b6a3cd1a
|
libs/libc/machine/arm/armv7-a/arch_elf.c: Appease nxstyle
|
2020-12-06 07:41:37 -06:00 |
|
YAMAMOTO Takashi
|
3152ee6c62
|
arch/arm/src/sama5/sam_emacb.c: Fix syslog formats
|
2020-12-06 07:41:37 -06:00 |
|
YAMAMOTO Takashi
|
c3bcf80a18
|
arch/arm/src/sama5/sam_xdmac.c: Fix syslog formats
|
2020-12-06 07:41:37 -06:00 |
|
YAMAMOTO Takashi
|
c8eb8ac9c1
|
arch/arm/src/sama5/sam_xdmac.c: Appease nxstyle
|
2020-12-06 07:41:37 -06:00 |
|
YAMAMOTO Takashi
|
59dc739895
|
arch/arm/src/sama5/sam_ssc.c: Fix syslog formats
|
2020-12-06 07:41:37 -06:00 |
|
Matias N
|
ec83dc2ad3
|
nxstyle fixes
|
2020-12-05 21:44:49 -06:00 |
|
Matias N
|
de9842ab60
|
LPC43 RIT: build fixes
|
2020-12-05 21:44:49 -06:00 |
|
Matias N
|
1e7c13dba3
|
Documentation: merge quickstart with the rest of "getting started"
|
2020-12-05 21:43:35 -06:00 |
|
Matias N
|
9c83b407b4
|
Documentation: re-enable prev, next buttons
|
2020-12-05 21:43:35 -06:00 |
|
chao.an
|
e37001f269
|
net/setsockopt/IP_MULTICAST_TTL: add handles of different prototypes
Reference here:
b3298500b2/net/ipv4/ip_sockglue.c (L923-L932)
Signed-off-by: chao.an <anchao@xiaomi.com>
|
2020-12-05 10:44:53 -08:00 |
|
chao.an
|
5ad2c931a3
|
net/inet: fix nxstyle warnings
Signed-off-by: chao.an <anchao@xiaomi.com>
|
2020-12-05 10:44:53 -08:00 |
|
chao.an
|
4af687b8c2
|
net/igmp: add MULTICAST_TTL support
Signed-off-by: chao.an <anchao@xiaomi.com>
|
2020-12-05 10:44:53 -08:00 |
|
Yoshinori Sugino
|
bce576c0bd
|
sched/sched/sched_waitid.c: Discard the child entry
Summary:
- Discard the child entry after receiving SIGCHLD.
Impact:
- waitid
Testing:
hifive1-revb:nsh (CONFIG_SCHED_HAVE_PARENT=y, CONFIG_SCHED_CHILD_STATUS=y, CONFIG_SIG_DEFAULT=y)
on QEMU
static int task_main(int argc, char *argv[])
{
sleep(1);
return 0;
}
int main(int argc, FAR char *argv[])
{
pid_t pid;
siginfo_t info;
int ret;
pid = task_create("task1", 224, 1024, task_main, NULL);
task_create("task2", 224, 1024, task_main, NULL);
waitid(P_PID, pid, &info, WEXITED);
waitid(P_ALL, 0, &info, WEXITED);
ret = waitid(P_ALL, 0, &info, WEXITED | WNOHANG);
assert(ret == -1);
return 0;
}
|
2020-12-05 08:45:42 -06:00 |
|
Yoshinori Sugino
|
1a9a71f47c
|
sched/sched/sched_waitid.c: Fix an error that occurs when a waiting task has already finished
Summary:
- Fix an error that occurs when a waiting task has already finished.
Impact:
- waitid
Testing:
hifive1-revb:nsh (CONFIG_SCHED_HAVE_PARENT=y, CONFIG_SCHED_CHILD_STATUS=y, CONFIG_SIG_DEFAULT=y)
on QEMU
static int task_main(int argc, char *argv[])
{
return 0;
}
int main(int argc, FAR char *argv[])
{
siginfo_t info;
int pid;
int ret;
pid = task_create("task", 224, 1024, task_main, NULL);
sleep(1);
ret = waitid(P_PID, pid, &info, WEXITED);
assert(ret == 0);
return 0;
}
|
2020-12-05 08:45:42 -06:00 |
|
YAMAMOTO Takashi
|
9579fe1444
|
libs/libc/spawn/lib_psa_dump.c: Fix a syslog format
|
2020-12-05 08:13:32 -06:00 |
|
YAMAMOTO Takashi
|
0a4ee70f39
|
arch/renesas/src/common/up_createstack.c: Fix a syslog format
|
2020-12-05 08:13:32 -06:00 |
|
YAMAMOTO Takashi
|
e7389c8ef2
|
arch/renesas/src/rx65n/rx65n_eth.c: Fix syslog formats
|
2020-12-05 08:13:32 -06:00 |
|
YAMAMOTO Takashi
|
0583789abe
|
arch/renesas/src/rx65n/rx65n_dumpstate.c: Fix syslog formats
|
2020-12-05 08:13:32 -06:00 |
|
YAMAMOTO Takashi
|
45444edc16
|
fs/nxffs/nxffs_write.c: Fix a syslog format
|
2020-12-05 08:13:32 -06:00 |
|
YAMAMOTO Takashi
|
5bead4aa37
|
fs/nxffs/nxffs_unlink.c: Fix syslog formats
|
2020-12-05 08:13:32 -06:00 |
|
YAMAMOTO Takashi
|
c9d8570040
|
fs/nxffs/nxffs_reformat.c: Fix a syslog format
|
2020-12-05 08:13:32 -06:00 |
|
YAMAMOTO Takashi
|
78356a7df2
|
fs/nxffs/nxffs_read.c: Fix a syslog format
|
2020-12-05 08:13:32 -06:00 |
|
YAMAMOTO Takashi
|
e891e0aaa6
|
fs/nxffs/nxffs_pack.c: Fix syslog formats
|
2020-12-05 08:13:32 -06:00 |
|
YAMAMOTO Takashi
|
0a99d1396e
|
fs/nxffs/nxffs_open.c: Fix syslog formats
|
2020-12-05 08:13:32 -06:00 |
|
YAMAMOTO Takashi
|
da67e80ca9
|
fs/nxffs/nxffs_inode.c: Fix syslog formats
|
2020-12-05 08:13:32 -06:00 |
|
YAMAMOTO Takashi
|
d0dd04e24a
|
fs/nxffs/nxffs_inode.c: Appease nxstyle
|
2020-12-05 08:13:32 -06:00 |
|
YAMAMOTO Takashi
|
942b1e925d
|
fs/nxffs/nxffs_initialize.c: Fix syslog formats
|
2020-12-05 08:13:32 -06:00 |
|
YAMAMOTO Takashi
|
f6ca8bfe45
|
fs/nxffs/nxffs_dirent.c: Fix a syslog format
|
2020-12-05 08:13:32 -06:00 |
|
YAMAMOTO Takashi
|
75d0077cd1
|
fs/nxffs/nxffs_blockstats.c: Fix syslog formats
|
2020-12-05 08:13:32 -06:00 |
|
YAMAMOTO Takashi
|
01e0c41759
|
fs/nxffs/nxffs_blockstats.c: Appease nxstyle
|
2020-12-05 08:13:32 -06:00 |
|
YAMAMOTO Takashi
|
00bc0ff6ba
|
drivers/mtd/sst25.c: Fix a syslog format
|
2020-12-05 08:13:32 -06:00 |
|
YAMAMOTO Takashi
|
012a34aef7
|
drivers/mtd/sst25.c: Appease nxstyle
|
2020-12-05 08:13:32 -06:00 |
|
YAMAMOTO Takashi
|
d6e1ae5616
|
arch/mips/src/pic32mz/pic32mz_spi.c: Fix a syslog format
|
2020-12-05 08:13:32 -06:00 |
|
YAMAMOTO Takashi
|
efde691052
|
arch/mips/src/pic32mx/pic32mx_spi.c: Fix syslog formats
|
2020-12-05 08:13:32 -06:00 |
|
YAMAMOTO Takashi
|
326b217ef4
|
arch/mips/src/pic32mx/pic32mx_ethernet.c: Fix syslog formats
|
2020-12-05 08:13:32 -06:00 |
|
YAMAMOTO Takashi
|
7b66e23a6a
|
arch/mips/src/pic32mx/pic32mx_ethernet.c: Remove non-ascii characters
0x91 and 0x92. I don't know what they are.
|
2020-12-05 08:13:32 -06:00 |
|
YAMAMOTO Takashi
|
41306dbeae
|
arch/mips/src/mips32/mips_dumpstate.c: Fix syslog formats
|
2020-12-05 08:13:32 -06:00 |
|
YAMAMOTO Takashi
|
bc2fe40f5b
|
arch/mips/src/mips32/mips_vfork.c: Fix syslog formats
|
2020-12-05 08:13:32 -06:00 |
|