cmd.c 16.6 KB
Newer Older
1 2 3 4 5 6 7
/*
 * File      : cmd.c
 * This file is part of RT-Thread RTOS
 * COPYRIGHT (C) 2006, RT-Thread Development Team
 *
 * The license and distribution terms for this file may be
 * found in the file LICENSE in this distribution or at
8
 * http://www.rt-thread.org/license/LICENSE
9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
 *
 * Change Logs:
 * Date           Author       Notes
 * 2006-04-30     Bernard      first implementation
 * 2006-05-04     Bernard      add list_thread,
 *                                 list_sem,
 *                                 list_timer
 * 2006-05-20     Bernard      add list_mutex,
 *                                 list_mailbox,
 *                                 list_msgqueue,
 *                                 list_event,
 *                                 list_fevent,
 *                                 list_mempool
 * 2006-06-03     Bernard      display stack information in list_thread
 * 2006-08-10     Bernard      change version to invoke rt_show_version
 * 2008-09-10     Bernard      update the list function for finsh syscall
 *                                 list and sysvar list
 * 2009-05-30     Bernard      add list_device
qiuyiuestc's avatar
qiuyiuestc 已提交
27
 * 2010-04-21     yi.qiu          add list_module
28 29 30
 */

#include <rtthread.h>
31 32 33 34
#include "finsh.h"

// Copy from kservice.h because we can not use it out of the kernel.
// Ugly. Should let kservice.h avaliable for applications?
M
mbbill 已提交
35 36 37
rt_inline int rt_list_isempty(const rt_list_t *l)
{
	return l->next == l;
38 39 40 41 42 43 44 45 46 47 48 49
}

rt_inline unsigned int rt_list_len(const rt_list_t *l)
{
	unsigned int len = 0;
	const rt_list_t *p = l;
	while( p->next != l )
	{
		p = p->next;
		len++;
	}
	return len;
M
mbbill 已提交
50
}
51

52
long hello(void)
53 54 55 56 57
{
	rt_kprintf("Hello RT-Thread!\n");

	return 0;
}
58
FINSH_FUNCTION_EXPORT(hello, say hello world);
59 60

extern void rt_show_version(void);
61
long version(void)
62 63 64 65 66
{
	rt_show_version();

	return 0;
}
67
FINSH_FUNCTION_EXPORT(version, show RT-Thread version information);
68 69 70 71 72

#define rt_list_entry(node, type, member) \
    ((type *)((char *)(node) - (unsigned long)(&((type *)0)->member)))
extern struct rt_object_information rt_object_container[];

qiuyiuestc's avatar
qiuyiuestc 已提交
73
static long _list_thread(struct rt_list_node* list)
74 75
{
	struct rt_thread *thread;
qiuyiuestc's avatar
qiuyiuestc 已提交
76
	struct rt_list_node *node;
77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102
	rt_uint8_t* ptr;

	rt_kprintf(" thread  pri  status      sp     stack size max used   left tick  error\n");
	rt_kprintf("-------- ---- ------- ---------- ---------- ---------- ---------- ---\n");
	for (node = list->next; node != list; node = node->next)
	{
		thread = rt_list_entry(node, struct rt_thread, list);
		rt_kprintf("%-8s 0x%02x", thread->name, thread->current_priority);

		if (thread->stat == RT_THREAD_READY)		rt_kprintf(" ready  ");
		else if (thread->stat == RT_THREAD_SUSPEND) rt_kprintf(" suspend");
		else if (thread->stat == RT_THREAD_INIT)	rt_kprintf(" init   ");

		ptr = (rt_uint8_t*)thread->stack_addr;
		while (*ptr == '#')ptr ++;

		rt_kprintf(" 0x%08x 0x%08x 0x%08x 0x%08x %03d\n",
			thread->stack_size + ((rt_uint32_t)thread->stack_addr - (rt_uint32_t)thread->sp),
			thread->stack_size,
			thread->stack_size - ((rt_uint32_t) ptr - (rt_uint32_t)thread->stack_addr),
			thread->remaining_tick,
			thread->error);

	}
	return 0;
}
qiuyiuestc's avatar
qiuyiuestc 已提交
103 104 105 106 107

long list_thread(void)
{
	return _list_thread(&rt_object_container[RT_Object_Class_Thread].object_list);
}
108
FINSH_FUNCTION_EXPORT(list_thread, list thread);
109 110 111 112 113 114 115 116 117 118 119 120 121 122 123

static void show_wait_queue(struct rt_list_node* list)
{
	struct rt_thread *thread;
	struct rt_list_node *node;

	for (node = list->next; node != list; node = node->next)
	{
		thread = rt_list_entry(node, struct rt_thread, tlist);
		rt_kprintf("%s", thread->name);
		if (node->next != list) rt_kprintf("/");
	}
}

#ifdef RT_USING_SEMAPHORE
qiuyiuestc's avatar
qiuyiuestc 已提交
124
static long _list_sem(struct rt_list_node *list)
125 126
{
	struct rt_semaphore *sem;
qiuyiuestc's avatar
qiuyiuestc 已提交
127
	struct rt_list_node *node;
128 129 130 131 132

	rt_kprintf("semaphore v   suspend thread\n");
	rt_kprintf("--------  --- --------------\n");
	for (node = list->next; node != list; node = node->next)
	{
133
		sem = (struct rt_semaphore*)(rt_list_entry(node, struct rt_object, list));
M
mbbill 已提交
134
		if( !rt_list_isempty(&sem->parent.suspend_thread) )
135
		{
M
mbbill 已提交
136
			rt_kprintf("%-8s  %03d %d:", sem->parent.parent.name, sem->value, rt_list_len(&sem->parent.suspend_thread) );
137 138 139 140 141
			show_wait_queue(&(sem->parent.suspend_thread));
			rt_kprintf("\n");
		}
		else
		{
M
mbbill 已提交
142
			rt_kprintf("%-8s  %03d %d\n", sem->parent.parent.name, sem->value, rt_list_len(&sem->parent.suspend_thread));
143 144 145 146 147
		}
	}

	return 0;
}
qiuyiuestc's avatar
qiuyiuestc 已提交
148 149 150 151 152

long list_sem(void)
{
	return _list_sem(&rt_object_container[RT_Object_Class_Semaphore].object_list);
}
153 154 155 156
FINSH_FUNCTION_EXPORT(list_sem, list semaphone in system)
#endif

#ifdef RT_USING_EVENT
qiuyiuestc's avatar
qiuyiuestc 已提交
157
static long _list_event(struct rt_list_node *list)
158 159
{
	struct rt_event *e;
qiuyiuestc's avatar
qiuyiuestc 已提交
160
	struct rt_list_node *node;
161 162 163 164 165 166

	rt_kprintf("event    set        suspend thread\n");
	rt_kprintf("-------- ---------- --------------\n");
	for (node = list->next; node != list; node = node->next)
	{
		e = (struct rt_event*)(rt_list_entry(node, struct rt_object, list));
M
mbbill 已提交
167
		rt_kprintf("%-8s  0x%08x %03d\n", e->parent.parent.name, e->set, rt_list_len(&e->parent.suspend_thread));
168 169 170 171
	}

	return 0;
}
qiuyiuestc's avatar
qiuyiuestc 已提交
172 173 174 175 176

long list_event(void)
{
	return _list_event(&rt_object_container[RT_Object_Class_Event].object_list);
}
177 178 179 180
FINSH_FUNCTION_EXPORT(list_event, list event in system)
#endif

#ifdef RT_USING_MUTEX
qiuyiuestc's avatar
qiuyiuestc 已提交
181
static long _list_mutex(struct rt_list_node *list)
182 183
{
	struct rt_mutex *m;
qiuyiuestc's avatar
qiuyiuestc 已提交
184
	struct rt_list_node *node;
185 186 187 188 189 190

	rt_kprintf("mutex    owner    hold suspend thread\n");
	rt_kprintf("-------- -------- ---- --------------\n");
	for (node = list->next; node != list; node = node->next)
	{
		m = (struct rt_mutex*)(rt_list_entry(node, struct rt_object, list));
M
mbbill 已提交
191
		rt_kprintf("%-8s %-8s %04d %d\n", m->parent.parent.name, m->owner->name, m->hold, rt_list_len(&m->parent.suspend_thread));
192 193 194 195
	}

	return 0;
}
qiuyiuestc's avatar
qiuyiuestc 已提交
196 197 198 199 200

long list_mutex(void)
{
	return _list_mutex(&rt_object_container[RT_Object_Class_Mutex].object_list);
}
201 202 203 204
FINSH_FUNCTION_EXPORT(list_mutex, list mutex in system)
#endif

#ifdef RT_USING_MAILBOX
qiuyiuestc's avatar
qiuyiuestc 已提交
205
static long _list_mailbox(struct rt_list_node *list)
206 207
{
	struct rt_mailbox *m;
qiuyiuestc's avatar
qiuyiuestc 已提交
208
	struct rt_list_node *node;
209 210 211 212 213

	rt_kprintf("mailbox  entry size suspend thread\n");
	rt_kprintf("-------- ----  ---- --------------\n");
	for (node = list->next; node != list; node = node->next)
	{
214
		m = (struct rt_mailbox*)(rt_list_entry(node, struct rt_object, list));
M
mbbill 已提交
215
		if( !rt_list_isempty(&m->parent.suspend_thread) )
216
		{
M
mbbill 已提交
217
			rt_kprintf("%-8s %04d  %04d %d:", m->parent.parent.name, m->entry, m->size, rt_list_len(&m->parent.suspend_thread));
218 219 220 221 222
			show_wait_queue(&(m->parent.suspend_thread));
			rt_kprintf("\n");
		}
		else
		{
M
mbbill 已提交
223
			rt_kprintf("%-8s %04d  %04d %d\n", m->parent.parent.name, m->entry, m->size, rt_list_len(&m->parent.suspend_thread));
224 225 226 227 228
		}
	}

	return 0;
}
qiuyiuestc's avatar
qiuyiuestc 已提交
229 230 231 232 233

long list_mailbox(void)
{
	return _list_mailbox(&rt_object_container[RT_Object_Class_MailBox].object_list);
}
234 235 236 237
FINSH_FUNCTION_EXPORT(list_mailbox, list mail box in system)
#endif

#ifdef RT_USING_MESSAGEQUEUE
qiuyiuestc's avatar
qiuyiuestc 已提交
238
static long _list_msgqueue(struct rt_list_node *list)
239 240
{
	struct rt_messagequeue *m;
qiuyiuestc's avatar
qiuyiuestc 已提交
241
	struct rt_list_node *node;
242 243 244 245 246 247

	rt_kprintf("msgqueue entry suspend thread\n");
	rt_kprintf("-------- ----  --------------\n");
	for (node = list->next; node != list; node = node->next)
	{
		m = (struct rt_messagequeue*)(rt_list_entry(node, struct rt_object, list));
248 249 250 251 252 253 254 255 256 257
		if( !rt_list_isempty(&m->parent.suspend_thread) )
		{
			rt_kprintf("%-8s %04d  %d:", m->parent.parent.name, m->entry, rt_list_len(&m->parent.suspend_thread));
			show_wait_queue(&(m->parent.suspend_thread));
			rt_kprintf("\n");
		}
		else
		{
			rt_kprintf("%-8s %04d  %d\n", m->parent.parent.name, m->entry, rt_list_len(&m->parent.suspend_thread));
		}
258 259 260 261
	}

	return 0;
}
qiuyiuestc's avatar
qiuyiuestc 已提交
262 263 264 265 266

long list_msgqueue(void)
{
	return _list_msgqueue(&rt_object_container[RT_Object_Class_MessageQueue].object_list);
}
267 268 269 270
FINSH_FUNCTION_EXPORT(list_msgqueue, list message queue in system)
#endif

#ifdef RT_USING_MEMPOOL
qiuyiuestc's avatar
qiuyiuestc 已提交
271
static long _list_mempool(struct rt_list_node *list)
272 273
{
	struct rt_mempool *mp;
qiuyiuestc's avatar
qiuyiuestc 已提交
274
	struct rt_list_node *node;
275 276 277 278 279 280

	rt_kprintf("mempool  block total free suspend thread\n");
	rt_kprintf("-------- ----  ----  ---- --------------\n");
	for (node = list->next; node != list; node = node->next)
	{
		mp = (struct rt_mempool*)rt_list_entry(node, struct rt_object, list);
281 282 283 284 285 286 287 288 289 290 291 292 293 294
		if (mp->suspend_thread_count > 0)
		{
			rt_kprintf("%-8s %04d  %04d  %04d %d:", mp->parent.name,
				mp->block_size, mp->block_total_count, mp->block_free_count,
				mp->suspend_thread_count);
			show_wait_queue(&(mp->suspend_thread));
			rt_kprintf("\n");			
		}
		else
		{
			rt_kprintf("%-8s %04d  %04d  %04d %d\n", mp->parent.name,
				mp->block_size, mp->block_total_count, mp->block_free_count,
				mp->suspend_thread_count);
		}
295 296 297 298
	}

	return 0;
}
qiuyiuestc's avatar
qiuyiuestc 已提交
299 300 301 302 303

long list_mempool(void)
{
	return _list_mempool(&rt_object_container[RT_Object_Class_MemPool].object_list);
}
304 305 306
FINSH_FUNCTION_EXPORT(list_mempool, list memory pool in system)
#endif

qiuyiuestc's avatar
qiuyiuestc 已提交
307
static long _list_timer(struct rt_list_node *list)
308 309
{
	struct rt_timer *timer;
qiuyiuestc's avatar
qiuyiuestc 已提交
310
	struct rt_list_node *node;
311 312 313 314 315 316 317 318 319 320 321 322 323 324 325

	rt_kprintf("timer    periodic   timeout    flag\n");
	rt_kprintf("-------- ---------- ---------- -----------\n");
	for (node = list->next; node != list; node = node->next)
	{
		timer = (struct rt_timer*)(rt_list_entry(node, struct rt_object, list));
		rt_kprintf("%-8s 0x%08x 0x%08x ", timer->parent.name, timer->init_tick, timer->timeout_tick);
		if (timer->parent.flag & RT_TIMER_FLAG_ACTIVATED) rt_kprintf("activated\n");
		else rt_kprintf("deactivated\n");
	}

	rt_kprintf("current tick:0x%08x\n", rt_tick_get());

	return 0;
}
qiuyiuestc's avatar
qiuyiuestc 已提交
326 327 328 329 330

long list_timer(void)
{
	return _list_timer(&rt_object_container[RT_Object_Class_Timer].object_list);
}
331 332 333
FINSH_FUNCTION_EXPORT(list_timer, list timer in system)

#ifdef RT_USING_DEVICE
qiuyiuestc's avatar
qiuyiuestc 已提交
334
static long _list_device(struct rt_list_node *list)
335 336
{
	struct rt_device *device;
qiuyiuestc's avatar
qiuyiuestc 已提交
337
	struct rt_list_node *node;
B
bernard.xiong 已提交
338
	const char *device_type_str[] =
339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358
	{
		"Character Device",
		"Block Device",
		"Network Interface",
		"MTD Device",
		"CAN",
		"RTC",
		"Unknown"
	};

	rt_kprintf("device    type      \n");
	rt_kprintf("-------- ---------- \n");
	for (node = list->next; node != list; node = node->next)
	{
		device = (struct rt_device*)(rt_list_entry(node, struct rt_object, list));
		rt_kprintf("%-8s %-8s \n", device->parent.name, device_type_str[device->type]);
	}

	return 0;
}
qiuyiuestc's avatar
qiuyiuestc 已提交
359 360 361 362 363

long list_device(void)
{
	return _list_device(&rt_object_container[RT_Object_Class_Device].object_list);
}
364 365 366
FINSH_FUNCTION_EXPORT(list_device, list device in system)
#endif

qiuyiuestc's avatar
qiuyiuestc 已提交
367
#ifdef RT_USING_MODULE
368
int list_module(void)
qiuyiuestc's avatar
qiuyiuestc 已提交
369 370 371 372 373 374 375 376
{
	struct rt_module *module;
	struct rt_list_node *list, *node;

	list = &rt_object_container[RT_Object_Class_Module].object_list;

	for (node = list->next; node != list; node = node->next)
	{
qiuyiuestc's avatar
qiuyiuestc 已提交
377 378
		struct rt_list_node *tlist;
		struct rt_thread *thread;	
qiuyiuestc's avatar
qiuyiuestc 已提交
379 380
		rt_uint8_t* ptr;
		
381
		module = (struct rt_module*)(rt_list_entry(node, struct rt_object, list));
qiuyiuestc's avatar
qiuyiuestc 已提交
382 383 384 385 386 387
		rt_kprintf("______________________________________________________________________\n");
		rt_kprintf("[module]%-8s \n", module->parent.name);

		/* list main thread in module */
		if(module->module_thread != RT_NULL)
		{	
qiuyiuestc's avatar
qiuyiuestc 已提交
388
			rt_kprintf("main thread  pri  status      sp     stack size max used   left tick  error\n");
qiuyiuestc's avatar
qiuyiuestc 已提交
389 390
			rt_kprintf("------------- ---- ------- ---------- ---------- ---------- ---------- ---\n");
			thread = module->module_thread;
qiuyiuestc's avatar
qiuyiuestc 已提交
391 392 393 394 395 396 397 398 399 400 401 402 403 404 405
			rt_kprintf("%-8s 0x%02x", thread->name, thread->current_priority);

			if (thread->stat == RT_THREAD_READY)		rt_kprintf(" ready  ");
			else if (thread->stat == RT_THREAD_SUSPEND) rt_kprintf(" suspend");
			else if (thread->stat == RT_THREAD_INIT)	rt_kprintf(" init   ");

			ptr = (rt_uint8_t*)thread->stack_addr;
			while (*ptr == '#')ptr ++;

			rt_kprintf(" 0x%08x 0x%08x 0x%08x 0x%08x %03d\n",
				thread->stack_size + ((rt_uint32_t)thread->stack_addr - (rt_uint32_t)thread->sp),
				thread->stack_size,
				thread->stack_size - ((rt_uint32_t) ptr - (rt_uint32_t)thread->stack_addr),
				thread->remaining_tick,
				thread->error);
qiuyiuestc's avatar
qiuyiuestc 已提交
406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448
		}	

		/* list sub thread in module */
		tlist = &module->module_object[RT_Object_Class_Thread].object_list;
		if(!rt_list_isempty(tlist)) _list_thread(tlist);
#ifdef RT_USING_SEMAPHORE
		/* list semaphored in module */
		tlist = &module->module_object[RT_Object_Class_Semaphore].object_list;
		if(!rt_list_isempty(tlist)) _list_sem(tlist);
#endif
#ifdef RT_USING_MUTEX
		/* list mutex in module */
		tlist = &module->module_object[RT_Object_Class_Mutex].object_list;
		if(!rt_list_isempty(tlist)) _list_mutex(tlist);
#endif
#ifdef RT_USING_EVENT
		/* list event in module */
		tlist = &module->module_object[RT_Object_Class_Event].object_list;
		if(!rt_list_isempty(tlist)) _list_event(tlist);
#endif
#ifdef RT_USING_MAILBOX
		/* list mailbox in module */
		tlist = &module->module_object[RT_Object_Class_MailBox].object_list;
		if(!rt_list_isempty(tlist)) _list_mailbox(tlist);
#endif
#ifdef RT_USING_MESSAGEQUEUE
		/* list message queue in module */
		tlist = &module->module_object[RT_Object_Class_MessageQueue].object_list;
		if(!rt_list_isempty(tlist)) _list_msgqueue(tlist);
#endif
#ifdef RT_USING_MEMPOOL
		/* list memory pool in module */
		tlist = &module->module_object[RT_Object_Class_MemPool].object_list;
		if(!rt_list_isempty(tlist)) _list_mempool(tlist);
#endif
#ifdef RT_USING_DEVICE
		/* list device in module */
		tlist = &module->module_object[RT_Object_Class_Device].object_list;
		if(!rt_list_isempty(tlist)) _list_device(tlist);
#endif
		/* list timer in module */
		tlist = &module->module_object[RT_Object_Class_Timer].object_list;
		if(!rt_list_isempty(tlist)) _list_timer(tlist);
qiuyiuestc's avatar
qiuyiuestc 已提交
449
	}
qiuyiuestc's avatar
qiuyiuestc 已提交
450
	rt_kprintf("______________________________________________________________________\n");
qiuyiuestc's avatar
qiuyiuestc 已提交
451 452 453 454 455 456

	return 0;
}
FINSH_FUNCTION_EXPORT(list_module, list module in system)
#endif

457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506
int list()
{
	struct finsh_syscall_item* syscall_item;
	struct finsh_sysvar_item*  sysvar_item;

	rt_kprintf("--Function List:\n");
	{
		struct finsh_syscall* index;
		for (index = _syscall_table_begin; index < _syscall_table_end; index ++)
		{
#ifdef FINSH_USING_DESCRIPTION
			rt_kprintf("%-16s -- %s\n", index->name, index->desc);
#else
			rt_kprintf("%s\n", index->name);
#endif
		}
	}

	/* list syscall list */
	syscall_item = global_syscall_list;
	while (syscall_item != NULL)
	{
		rt_kprintf("[l] %s\n", syscall_item->syscall.name);
		syscall_item = syscall_item->next;
	}

	rt_kprintf("--Variable List:\n");
	{
		struct finsh_sysvar* index;
		for (index = _sysvar_table_begin; index < _sysvar_table_end; index ++)
		{
#ifdef FINSH_USING_DESCRIPTION
			rt_kprintf("%-16s -- %s\n", index->name, index->desc);
#else
			rt_kprintf("%s\n", index->name);
#endif
		}
	}

	sysvar_item = global_sysvar_list;
	while (sysvar_item != NULL)
	{
		rt_kprintf("[l] %s\n", sysvar_item->sysvar.name);
		sysvar_item = sysvar_item->next;
	}

	return 0;
}
FINSH_FUNCTION_EXPORT(list, list all symbol in system)

507
static int str_is_prefix(const char* prefix, const char* str)
508 509 510 511 512 513 514 515 516 517 518 519 520 521
{
	while ((*prefix) && (*prefix == *str))
	{
		prefix ++;
		str ++;
	}

	if (*prefix == 0) return 0;
	return -1;
}

void list_prefix(char* prefix)
{
	struct finsh_syscall_item* syscall_item;
522 523 524 525 526
	struct finsh_sysvar_item*  sysvar_item;
	rt_uint16_t func_cnt, var_cnt;
	const char* name_ptr;

	func_cnt = 0;
527 528
	var_cnt  = 0;
	name_ptr = RT_NULL;
B
bernard.xiong 已提交
529

530 531 532 533 534
	{
		struct finsh_syscall* index;
		for (index = _syscall_table_begin; index < _syscall_table_end; index ++)
		{
			if (str_is_prefix(prefix, index->name) == 0)
535
			{
536
				if (func_cnt == 0)
537 538 539 540 541
					rt_kprintf("--function:\n");

				func_cnt ++;
				/* set name_ptr */
				name_ptr = index->name;
542 543 544 545 546 547 548 549 550 551 552 553 554 555 556

#ifdef FINSH_USING_DESCRIPTION
				rt_kprintf("%-16s -- %s\n", index->name, index->desc);
#else
				rt_kprintf("%s\n", index->name);
#endif
			}
		}
	}

	/* list syscall list */
	syscall_item = global_syscall_list;
	while (syscall_item != NULL)
	{
		if (str_is_prefix(prefix, syscall_item->syscall.name) == 0)
557
		{
558 559
			if (func_cnt == 0)
				rt_kprintf("--function:\n");
560 561 562 563
			func_cnt ++;
			/* set name_ptr */
			name_ptr = syscall_item->syscall.name;

564 565 566 567 568 569 570 571 572 573
			rt_kprintf("[l] %s\n", syscall_item->syscall.name);
		}
		syscall_item = syscall_item->next;
	}

	{
		struct finsh_sysvar* index;
		for (index = _sysvar_table_begin; index < _sysvar_table_end; index ++)
		{
			if (str_is_prefix(prefix, index->name) == 0)
574 575 576
			{
				if (var_cnt == 0)
					rt_kprintf("--variable:\n");
577

578 579 580
				var_cnt ++;
				/* set name ptr */
				name_ptr = index->name;
B
bernard.xiong 已提交
581

582 583 584 585 586 587 588 589 590 591 592 593 594 595
#ifdef FINSH_USING_DESCRIPTION
				rt_kprintf("%-16s -- %s\n", index->name, index->desc);
#else
				rt_kprintf("%s\n", index->name);
#endif
			}
		}
	}

	sysvar_item = global_sysvar_list;
	while (sysvar_item != NULL)
	{
		if (str_is_prefix(prefix, sysvar_item->sysvar.name) == 0)
		{
596 597 598 599 600 601 602
			if (var_cnt == 0)
				rt_kprintf("--variable:\n");

			var_cnt ++;
			/* set name ptr */
			name_ptr = sysvar_item->sysvar.name;

603 604 605
			rt_kprintf("[l] %s\n", sysvar_item->sysvar.name);
		}
		sysvar_item = sysvar_item->next;
606 607 608 609 610 611
	}

	/* only one matched */
	if ((func_cnt + var_cnt) == 1)
	{
		rt_strncpy(prefix, name_ptr, strlen(name_ptr));
612 613 614
	}
}

615 616 617 618
#ifdef FINSH_USING_SYMTAB
static int dummy = 0;
FINSH_VAR_EXPORT(dummy, finsh_type_int, dummy variable for finsh)
#endif