arch: Remove FILE dump code from _up_dumponexit
since the kernel build can't access the userspace memory inside other process directly Signed-off-by: Xiang Xiao <xiaoxiang@xiaomi.com>
This commit is contained in:
parent
1ba1f3f24b
commit
19e5ee6ce0
@ -65,9 +65,6 @@
|
|||||||
static void _up_dumponexit(FAR struct tcb_s *tcb, FAR void *arg)
|
static void _up_dumponexit(FAR struct tcb_s *tcb, FAR void *arg)
|
||||||
{
|
{
|
||||||
FAR struct filelist *filelist;
|
FAR struct filelist *filelist;
|
||||||
#ifdef CONFIG_FILE_STREAM
|
|
||||||
FAR struct file_struct *filep;
|
|
||||||
#endif
|
|
||||||
int i;
|
int i;
|
||||||
int j;
|
int j;
|
||||||
|
|
||||||
@ -88,28 +85,6 @@ static void _up_dumponexit(FAR struct tcb_s *tcb, FAR void *arg)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
#ifdef CONFIG_FILE_STREAM
|
|
||||||
filep = tcb->group->tg_streamlist->sl_head;
|
|
||||||
for (; filep != NULL; filep = filep->fs_next)
|
|
||||||
{
|
|
||||||
if (filep->fs_fd >= 0)
|
|
||||||
{
|
|
||||||
#ifndef CONFIG_STDIO_DISABLE_BUFFERING
|
|
||||||
if (filep->fs_bufstart != NULL)
|
|
||||||
{
|
|
||||||
sinfo(" fd=%d nbytes=%d\n",
|
|
||||||
filep->fs_fd,
|
|
||||||
filep->fs_bufpos - filep->fs_bufstart);
|
|
||||||
}
|
|
||||||
else
|
|
||||||
#endif
|
|
||||||
{
|
|
||||||
sinfo(" fd=%d\n", filep->fs_fd);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
#endif
|
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
@ -64,9 +64,6 @@
|
|||||||
static void _up_dumponexit(FAR struct tcb_s *tcb, FAR void *arg)
|
static void _up_dumponexit(FAR struct tcb_s *tcb, FAR void *arg)
|
||||||
{
|
{
|
||||||
FAR struct filelist *filelist;
|
FAR struct filelist *filelist;
|
||||||
#ifdef CONFIG_FILE_STREAM
|
|
||||||
FAR struct file_struct *filep;
|
|
||||||
#endif
|
|
||||||
int i;
|
int i;
|
||||||
int j;
|
int j;
|
||||||
|
|
||||||
@ -87,28 +84,6 @@ static void _up_dumponexit(FAR struct tcb_s *tcb, FAR void *arg)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
#ifdef CONFIG_FILE_STREAM
|
|
||||||
filep = tcb->group->tg_streamlist->sl_head;
|
|
||||||
for (; filep != NULL; filep = filep->fs_next)
|
|
||||||
{
|
|
||||||
if (filep->fs_fd >= 0)
|
|
||||||
{
|
|
||||||
#ifndef CONFIG_STDIO_DISABLE_BUFFERING
|
|
||||||
if (filep->fs_bufstart != NULL)
|
|
||||||
{
|
|
||||||
sinfo(" fd=%d nbytes=%d\n",
|
|
||||||
filep->fs_fd,
|
|
||||||
filep->fs_bufpos - filep->fs_bufstart);
|
|
||||||
}
|
|
||||||
else
|
|
||||||
#endif
|
|
||||||
{
|
|
||||||
sinfo(" fd=%d\n", filep->fs_fd);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
#endif
|
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
@ -64,9 +64,6 @@
|
|||||||
static void _up_dumponexit(FAR struct tcb_s *tcb, FAR void *arg)
|
static void _up_dumponexit(FAR struct tcb_s *tcb, FAR void *arg)
|
||||||
{
|
{
|
||||||
FAR struct filelist *filelist;
|
FAR struct filelist *filelist;
|
||||||
#ifdef CONFIG_FILE_STREAM
|
|
||||||
FAR struct file_struct *filep;
|
|
||||||
#endif
|
|
||||||
int i;
|
int i;
|
||||||
int j;
|
int j;
|
||||||
|
|
||||||
@ -87,28 +84,6 @@ static void _up_dumponexit(FAR struct tcb_s *tcb, FAR void *arg)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
#ifdef CONFIG_FILE_STREAM
|
|
||||||
filep = tcb->group->tg_streamlist->sl_head;
|
|
||||||
for (; filep != NULL; filep = filep->fs_next)
|
|
||||||
{
|
|
||||||
if (filep->fs_fd >= 0)
|
|
||||||
{
|
|
||||||
#ifndef CONFIG_STDIO_DISABLE_BUFFERING
|
|
||||||
if (filep->fs_bufstart != NULL)
|
|
||||||
{
|
|
||||||
sinfo(" fd=%d nbytes=%d\n",
|
|
||||||
filep->fs_fd,
|
|
||||||
filep->fs_bufpos - filep->fs_bufstart);
|
|
||||||
}
|
|
||||||
else
|
|
||||||
#endif
|
|
||||||
{
|
|
||||||
sinfo(" fd=%d\n", filep->fs_fd);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
#endif
|
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
@ -66,9 +66,6 @@
|
|||||||
static void _up_dumponexit(FAR struct tcb_s *tcb, FAR void *arg)
|
static void _up_dumponexit(FAR struct tcb_s *tcb, FAR void *arg)
|
||||||
{
|
{
|
||||||
FAR struct filelist *filelist;
|
FAR struct filelist *filelist;
|
||||||
#ifdef CONFIG_FILE_STREAM
|
|
||||||
FAR struct file_struct *filep;
|
|
||||||
#endif
|
|
||||||
int i;
|
int i;
|
||||||
int j;
|
int j;
|
||||||
|
|
||||||
@ -89,28 +86,6 @@ static void _up_dumponexit(FAR struct tcb_s *tcb, FAR void *arg)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
#ifdef CONFIG_FILE_STREAM
|
|
||||||
filep = tcb->group->tg_streamlist->sl_head;
|
|
||||||
for (; filep != NULL; filep = filep->fs_next)
|
|
||||||
{
|
|
||||||
if (filep->fs_fd >= 0)
|
|
||||||
{
|
|
||||||
#ifndef CONFIG_STDIO_DISABLE_BUFFERING
|
|
||||||
if (filep->fs_bufstart != NULL)
|
|
||||||
{
|
|
||||||
sinfo(" fd=%d nbytes=%d\n",
|
|
||||||
filep->fs_fd,
|
|
||||||
filep->fs_bufpos - filep->fs_bufstart);
|
|
||||||
}
|
|
||||||
else
|
|
||||||
#endif
|
|
||||||
{
|
|
||||||
sinfo(" fd=%d\n", filep->fs_fd);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
#endif
|
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
@ -58,9 +58,6 @@
|
|||||||
static void _up_dumponexit(FAR struct tcb_s *tcb, FAR void *arg)
|
static void _up_dumponexit(FAR struct tcb_s *tcb, FAR void *arg)
|
||||||
{
|
{
|
||||||
FAR struct filelist *filelist;
|
FAR struct filelist *filelist;
|
||||||
#ifdef CONFIG_FILE_STREAM
|
|
||||||
FAR struct file_struct *filep;
|
|
||||||
#endif
|
|
||||||
int i;
|
int i;
|
||||||
int j;
|
int j;
|
||||||
|
|
||||||
@ -81,28 +78,6 @@ static void _up_dumponexit(FAR struct tcb_s *tcb, FAR void *arg)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
#ifdef CONFIG_FILE_STREAM
|
|
||||||
filep = tcb->group->tg_streamlist->sl_head;
|
|
||||||
for (; filep != NULL; filep = filep->fs_next)
|
|
||||||
{
|
|
||||||
if (filep->fs_fd >= 0)
|
|
||||||
{
|
|
||||||
#ifndef CONFIG_STDIO_DISABLE_BUFFERING
|
|
||||||
if (filep->fs_bufstart != NULL)
|
|
||||||
{
|
|
||||||
sinfo(" fd=%d nbytes=%d\n",
|
|
||||||
filep->fs_fd,
|
|
||||||
filep->fs_bufpos - filep->fs_bufstart);
|
|
||||||
}
|
|
||||||
else
|
|
||||||
#endif
|
|
||||||
{
|
|
||||||
sinfo(" fd=%d\n", filep->fs_fd);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
#endif
|
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
@ -58,9 +58,6 @@
|
|||||||
static void _up_dumponexit(FAR struct tcb_s *tcb, FAR void *arg)
|
static void _up_dumponexit(FAR struct tcb_s *tcb, FAR void *arg)
|
||||||
{
|
{
|
||||||
FAR struct filelist *filelist;
|
FAR struct filelist *filelist;
|
||||||
#ifdef CONFIG_FILE_STREAM
|
|
||||||
FAR struct file_struct *filep;
|
|
||||||
#endif
|
|
||||||
int i;
|
int i;
|
||||||
int j;
|
int j;
|
||||||
|
|
||||||
@ -81,27 +78,6 @@ static void _up_dumponexit(FAR struct tcb_s *tcb, FAR void *arg)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
#ifdef CONFIG_FILE_STREAM
|
|
||||||
filep = tcb->group->tg_streamlist->sl_head;
|
|
||||||
for (; filep != NULL; filep = filep->fs_next)
|
|
||||||
{
|
|
||||||
if (filep->fs_fd >= 0)
|
|
||||||
{
|
|
||||||
#ifndef CONFIG_STDIO_DISABLE_BUFFERING
|
|
||||||
if (filep->fs_bufstart != NULL)
|
|
||||||
{
|
|
||||||
sinfo(" fd=%d nbytes=%d\n",
|
|
||||||
filep->fs_fd, filep->fs_bufpos - filep->fs_bufstart);
|
|
||||||
}
|
|
||||||
else
|
|
||||||
#endif
|
|
||||||
{
|
|
||||||
sinfo(" fd=%d\n", filep->fs_fd);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
#endif
|
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
@ -65,9 +65,6 @@
|
|||||||
static void _up_dumponexit(FAR struct tcb_s *tcb, FAR void *arg)
|
static void _up_dumponexit(FAR struct tcb_s *tcb, FAR void *arg)
|
||||||
{
|
{
|
||||||
FAR struct filelist *filelist;
|
FAR struct filelist *filelist;
|
||||||
#ifdef CONFIG_FILE_STREAM
|
|
||||||
FAR struct file_struct *filep;
|
|
||||||
#endif
|
|
||||||
int i;
|
int i;
|
||||||
int j;
|
int j;
|
||||||
|
|
||||||
@ -88,28 +85,6 @@ static void _up_dumponexit(FAR struct tcb_s *tcb, FAR void *arg)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
#ifdef CONFIG_FILE_STREAM
|
|
||||||
filep = tcb->group->tg_streamlist->sl_head;
|
|
||||||
for (; filep != NULL; filep = filep->fs_next)
|
|
||||||
{
|
|
||||||
if (filep->fs_fd >= 0)
|
|
||||||
{
|
|
||||||
#ifndef CONFIG_STDIO_DISABLE_BUFFERING
|
|
||||||
if (filep->fs_bufstart != NULL)
|
|
||||||
{
|
|
||||||
sinfo(" fd=%d nbytes=%d\n",
|
|
||||||
filep->fs_fd,
|
|
||||||
filep->fs_bufpos - filep->fs_bufstart);
|
|
||||||
}
|
|
||||||
else
|
|
||||||
#endif
|
|
||||||
{
|
|
||||||
sinfo(" fd=%d\n", filep->fs_fd);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
#endif
|
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
@ -64,9 +64,6 @@
|
|||||||
static void _up_dumponexit(FAR struct tcb_s *tcb, FAR void *arg)
|
static void _up_dumponexit(FAR struct tcb_s *tcb, FAR void *arg)
|
||||||
{
|
{
|
||||||
FAR struct filelist *filelist;
|
FAR struct filelist *filelist;
|
||||||
#ifdef CONFIG_FILE_STREAM
|
|
||||||
FAR struct file_struct *filep;
|
|
||||||
#endif
|
|
||||||
int i;
|
int i;
|
||||||
int j;
|
int j;
|
||||||
|
|
||||||
@ -87,28 +84,6 @@ static void _up_dumponexit(FAR struct tcb_s *tcb, FAR void *arg)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
#ifdef CONFIG_FILE_STREAM
|
|
||||||
filep = tcb->group->tg_streamlist->sl_head;
|
|
||||||
for (; filep != NULL; filep = filep->fs_next)
|
|
||||||
{
|
|
||||||
if (filep->fs_fd >= 0)
|
|
||||||
{
|
|
||||||
#ifndef CONFIG_STDIO_DISABLE_BUFFERING
|
|
||||||
if (filep->fs_bufstart != NULL)
|
|
||||||
{
|
|
||||||
sinfo(" fd=%d nbytes=%d\n",
|
|
||||||
filep->fs_fd,
|
|
||||||
filep->fs_bufpos - filep->fs_bufstart);
|
|
||||||
}
|
|
||||||
else
|
|
||||||
#endif
|
|
||||||
{
|
|
||||||
sinfo(" fd=%d\n", filep->fs_fd);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
#endif
|
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
@ -66,9 +66,6 @@
|
|||||||
static void _up_dumponexit(struct tcb_s *tcb, void *arg)
|
static void _up_dumponexit(struct tcb_s *tcb, void *arg)
|
||||||
{
|
{
|
||||||
struct filelist *filelist;
|
struct filelist *filelist;
|
||||||
#ifdef CONFIG_FILE_STREAM
|
|
||||||
struct file_struct *filep;
|
|
||||||
#endif
|
|
||||||
int i;
|
int i;
|
||||||
int j;
|
int j;
|
||||||
|
|
||||||
@ -89,28 +86,6 @@ static void _up_dumponexit(struct tcb_s *tcb, void *arg)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
#ifdef CONFIG_FILE_STREAM
|
|
||||||
filep = tcb->group->tg_streamlist->sl_head;
|
|
||||||
for (; filep != NULL; filep = filep->fs_next)
|
|
||||||
{
|
|
||||||
if (filep->fs_fd >= 0)
|
|
||||||
{
|
|
||||||
#ifndef CONFIG_STDIO_DISABLE_BUFFERING
|
|
||||||
if (filep->fs_bufstart != NULL)
|
|
||||||
{
|
|
||||||
sinfo(" fd=%d nbytes=%d\n",
|
|
||||||
filep->fs_fd,
|
|
||||||
filep->fs_bufpos - filep->fs_bufstart);
|
|
||||||
}
|
|
||||||
else
|
|
||||||
#endif
|
|
||||||
{
|
|
||||||
sinfo(" fd=%d\n", filep->fs_fd);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
#endif
|
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
@ -64,9 +64,6 @@
|
|||||||
static void _up_dumponexit(FAR struct tcb_s *tcb, FAR void *arg)
|
static void _up_dumponexit(FAR struct tcb_s *tcb, FAR void *arg)
|
||||||
{
|
{
|
||||||
FAR struct filelist *filelist;
|
FAR struct filelist *filelist;
|
||||||
#ifdef CONFIG_FILE_STREAM
|
|
||||||
FAR struct file_struct *filep;
|
|
||||||
#endif
|
|
||||||
int i;
|
int i;
|
||||||
int j;
|
int j;
|
||||||
|
|
||||||
@ -87,28 +84,6 @@ static void _up_dumponexit(FAR struct tcb_s *tcb, FAR void *arg)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
#ifdef CONFIG_FILE_STREAM
|
|
||||||
filep = tcb->group->tg_streamlist->sl_head;
|
|
||||||
for (; filep != NULL; filep = filep->fs_next)
|
|
||||||
{
|
|
||||||
if (filep->fs_fd >= 0)
|
|
||||||
{
|
|
||||||
#ifndef CONFIG_STDIO_DISABLE_BUFFERING
|
|
||||||
if (filep->fs_bufstart != NULL)
|
|
||||||
{
|
|
||||||
sinfo(" fd=%d nbytes=%d\n",
|
|
||||||
filep->fs_fd,
|
|
||||||
filep->fs_bufpos - filep->fs_bufstart);
|
|
||||||
}
|
|
||||||
else
|
|
||||||
#endif
|
|
||||||
{
|
|
||||||
sinfo(" fd=%d\n", filep->fs_fd);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
#endif
|
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
@ -64,9 +64,6 @@
|
|||||||
static void _up_dumponexit(FAR struct tcb_s *tcb, FAR void *arg)
|
static void _up_dumponexit(FAR struct tcb_s *tcb, FAR void *arg)
|
||||||
{
|
{
|
||||||
FAR struct filelist *filelist;
|
FAR struct filelist *filelist;
|
||||||
#ifdef CONFIG_FILE_STREAM
|
|
||||||
FAR struct file_struct *filep;
|
|
||||||
#endif
|
|
||||||
int i;
|
int i;
|
||||||
int j;
|
int j;
|
||||||
|
|
||||||
@ -87,28 +84,6 @@ static void _up_dumponexit(FAR struct tcb_s *tcb, FAR void *arg)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
#ifdef CONFIG_FILE_STREAM
|
|
||||||
filep = tcb->group->tg_streamlist->sl_head;
|
|
||||||
for (; filep != NULL; filep = filep->fs_next)
|
|
||||||
{
|
|
||||||
if (filep->fs_fd >= 0)
|
|
||||||
{
|
|
||||||
#ifndef CONFIG_STDIO_DISABLE_BUFFERING
|
|
||||||
if (filep->fs_bufstart != NULL)
|
|
||||||
{
|
|
||||||
sinfo(" fd=%d nbytes=%d\n",
|
|
||||||
filep->fs_fd,
|
|
||||||
filep->fs_bufpos - filep->fs_bufstart);
|
|
||||||
}
|
|
||||||
else
|
|
||||||
#endif
|
|
||||||
{
|
|
||||||
sinfo(" fd=%d\n", filep->fs_fd);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
#endif
|
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
@ -66,9 +66,6 @@
|
|||||||
static void _xtensa_dumponexit(struct tcb_s *tcb, void *arg)
|
static void _xtensa_dumponexit(struct tcb_s *tcb, void *arg)
|
||||||
{
|
{
|
||||||
struct filelist *filelist;
|
struct filelist *filelist;
|
||||||
#ifdef CONFIG_FILE_STREAM
|
|
||||||
struct file_struct *filep;
|
|
||||||
#endif
|
|
||||||
int i;
|
int i;
|
||||||
int j;
|
int j;
|
||||||
|
|
||||||
@ -89,28 +86,6 @@ static void _xtensa_dumponexit(struct tcb_s *tcb, void *arg)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
#ifdef CONFIG_FILE_STREAM
|
|
||||||
filep = tcb->group->tg_streamlist->sl_head;
|
|
||||||
for (; filep != NULL; filep = filep->fs_next)
|
|
||||||
{
|
|
||||||
if (filep->fs_fd >= 0)
|
|
||||||
{
|
|
||||||
#ifndef CONFIG_STDIO_DISABLE_BUFFERING
|
|
||||||
if (filep->fs_bufstart != NULL)
|
|
||||||
{
|
|
||||||
sinfo(" fd=%d nbytes=%d\n",
|
|
||||||
filep->fs_fd,
|
|
||||||
filep->fs_bufpos - filep->fs_bufstart);
|
|
||||||
}
|
|
||||||
else
|
|
||||||
#endif
|
|
||||||
{
|
|
||||||
sinfo(" fd=%d\n", filep->fs_fd);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
#endif
|
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
@ -64,9 +64,6 @@
|
|||||||
static void _z16_dumponexit(FAR struct tcb_s *tcb, FAR void *arg)
|
static void _z16_dumponexit(FAR struct tcb_s *tcb, FAR void *arg)
|
||||||
{
|
{
|
||||||
FAR struct filelist *filelist;
|
FAR struct filelist *filelist;
|
||||||
#ifdef CONFIG_FILE_STREAM
|
|
||||||
FAR struct file_struct *filep;
|
|
||||||
#endif
|
|
||||||
int i;
|
int i;
|
||||||
int j;
|
int j;
|
||||||
|
|
||||||
@ -87,28 +84,6 @@ static void _z16_dumponexit(FAR struct tcb_s *tcb, FAR void *arg)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
#ifdef CONFIG_FILE_STREAM
|
|
||||||
filep = tcb->group->tg_streamlist->sl_head;
|
|
||||||
for (; filep != NULL; filep = filep->fs_next)
|
|
||||||
{
|
|
||||||
if (filep->fs_fd >= 0)
|
|
||||||
{
|
|
||||||
#ifndef CONFIG_STDIO_DISABLE_BUFFERING
|
|
||||||
if (filep->fs_bufstart != NULL)
|
|
||||||
{
|
|
||||||
sinfo(" fd=%d nbytes=%d\n",
|
|
||||||
filep->fs_fd,
|
|
||||||
filep->fs_bufpos - filep->fs_bufstart);
|
|
||||||
}
|
|
||||||
else
|
|
||||||
#endif
|
|
||||||
{
|
|
||||||
sinfo(" fd=%d\n", filep->fs_fd);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
#endif
|
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
@ -66,9 +66,6 @@
|
|||||||
static void _up_dumponexit(FAR struct tcb_s *tcb, FAR void *arg)
|
static void _up_dumponexit(FAR struct tcb_s *tcb, FAR void *arg)
|
||||||
{
|
{
|
||||||
FAR struct filelist *filelist;
|
FAR struct filelist *filelist;
|
||||||
#ifdef CONFIG_FILE_STREAM
|
|
||||||
FAR struct file_struct *filep;
|
|
||||||
#endif
|
|
||||||
int i;
|
int i;
|
||||||
int j;
|
int j;
|
||||||
|
|
||||||
@ -89,28 +86,6 @@ static void _up_dumponexit(FAR struct tcb_s *tcb, FAR void *arg)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
#ifdef CONFIG_FILE_STREAM
|
|
||||||
filep = tcb->group->tg_streamlist->sl_head;
|
|
||||||
for (; filep != NULL; filep = filep->fs_next)
|
|
||||||
{
|
|
||||||
if (filep->fs_fd >= 0)
|
|
||||||
{
|
|
||||||
#ifndef CONFIG_STDIO_DISABLE_BUFFERING
|
|
||||||
if (filep->fs_bufstart != NULL)
|
|
||||||
{
|
|
||||||
sinfo(" fd=%d nbytes=%d\n",
|
|
||||||
filep->fs_fd,
|
|
||||||
filep->fs_bufpos - filep->fs_bufstart);
|
|
||||||
}
|
|
||||||
else
|
|
||||||
#endif
|
|
||||||
{
|
|
||||||
sinfo(" fd=%d\n", filep->fs_fd);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
#endif
|
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user