summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2012-01-31 20:32:49 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2012-01-31 20:32:49 +0000
commitc0191ed21b7cb6f978fbde31d7e106a8c801ee03 (patch)
treeefb705b6235f0edf97501e65f3bcd78d1ef4eca0
parent16b9e9e0c7e36ab8d14a0a5be3aa10ea40d15fd3 (diff)
downloadnuttx-c0191ed21b7cb6f978fbde31d7e106a8c801ee03.tar.gz
nuttx-c0191ed21b7cb6f978fbde31d7e106a8c801ee03.tar.bz2
nuttx-c0191ed21b7cb6f978fbde31d7e106a8c801ee03.zip
Numerous cosmetic changes while debugging a telnet driver issue
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@4353 42af7a65-404d-4744-a932-0658087f49c3
-rw-r--r--apps/examples/telnetd/shell.c2
-rwxr-xr-xnuttx/arch/arm/src/armv7-m/up_unblocktask.c4
-rw-r--r--nuttx/arch/arm/src/common/up_createstack.c4
-rw-r--r--nuttx/arch/arm/src/common/up_exit.c4
-rw-r--r--nuttx/net/net_close.c4
-rw-r--r--nuttx/sched/exit.c4
-rw-r--r--nuttx/sched/sched_releasetcb.c5
-rw-r--r--nuttx/sched/sched_removereadytorun.c4
-rw-r--r--nuttx/sched/task_delete.c4
-rw-r--r--nuttx/sched/task_deletecurrent.c4
10 files changed, 20 insertions, 19 deletions
diff --git a/apps/examples/telnetd/shell.c b/apps/examples/telnetd/shell.c
index 9e2a2e30e..8cf695551 100644
--- a/apps/examples/telnetd/shell.c
+++ b/apps/examples/telnetd/shell.c
@@ -152,7 +152,7 @@ static void shell_parse(FAR char *line, int len)
/****************************************************************************
* Name: shell_session
****************************************************************************/
-
+
int shell_session(int argc, char *argv[])
{
char line[128];
diff --git a/nuttx/arch/arm/src/armv7-m/up_unblocktask.c b/nuttx/arch/arm/src/armv7-m/up_unblocktask.c
index b29f3d89f..da10f0376 100755
--- a/nuttx/arch/arm/src/armv7-m/up_unblocktask.c
+++ b/nuttx/arch/arm/src/armv7-m/up_unblocktask.c
@@ -1,8 +1,8 @@
/****************************************************************************
* arch/arm/src/armv7-m/up_unblocktask.c
*
- * Copyright (C) 2007-2009 Gregory Nutt. All rights reserved.
- * Author: Gregory Nutt <spudmonkey@racsa.co.cr>
+ * Copyright (C) 2007-2009, 2012 Gregory Nutt. All rights reserved.
+ * Author: Gregory Nutt <gnutt@nuttx.org>
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
diff --git a/nuttx/arch/arm/src/common/up_createstack.c b/nuttx/arch/arm/src/common/up_createstack.c
index 068924b4b..3d6dfef45 100644
--- a/nuttx/arch/arm/src/common/up_createstack.c
+++ b/nuttx/arch/arm/src/common/up_createstack.c
@@ -1,8 +1,8 @@
/****************************************************************************
* arch/arm/src/common/up_createstack.c
*
- * Copyright (C) 2007-2011 Gregory Nutt. All rights reserved.
- * Author: Gregory Nutt <spudmonkey@racsa.co.cr>
+ * Copyright (C) 2007-2012 Gregory Nutt. All rights reserved.
+ * Author: Gregory Nutt <gnutt@nuttx.org>
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
diff --git a/nuttx/arch/arm/src/common/up_exit.c b/nuttx/arch/arm/src/common/up_exit.c
index 17de3ade3..926d21509 100644
--- a/nuttx/arch/arm/src/common/up_exit.c
+++ b/nuttx/arch/arm/src/common/up_exit.c
@@ -1,8 +1,8 @@
/****************************************************************************
* common/up_exit.c
*
- * Copyright (C) 2007-2009 Gregory Nutt. All rights reserved.
- * Author: Gregory Nutt <spudmonkey@racsa.co.cr>
+ * Copyright (C) 2007-2009, 2012 Gregory Nutt. All rights reserved.
+ * Author: Gregory Nutt <gnutt@nuttx.org>
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
diff --git a/nuttx/net/net_close.c b/nuttx/net/net_close.c
index cf1c36bfe..3fc16067a 100644
--- a/nuttx/net/net_close.c
+++ b/nuttx/net/net_close.c
@@ -70,10 +70,10 @@ struct tcp_close_s
****************************************************************************/
/****************************************************************************
- * Function: netclose_disconnect
+ * Function: netclose_interrupt
*
* Description:
- * Break any current TCP connection
+ * Handle uIP callback events.
*
* Parameters:
* conn - uIP TCP connection structure
diff --git a/nuttx/sched/exit.c b/nuttx/sched/exit.c
index 2964b5a01..651fec8cb 100644
--- a/nuttx/sched/exit.c
+++ b/nuttx/sched/exit.c
@@ -1,8 +1,8 @@
/****************************************************************************
* sched/exit.c
*
- * Copyright (C) 2007, 2008, 2011 Gregory Nutt. All rights reserved.
- * Author: Gregory Nutt <spudmonkey@racsa.co.cr>
+ * Copyright (C) 2007-2008, 2011-2012 Gregory Nutt. All rights reserved.
+ * Author: Gregory Nutt <gnutt@nuttx.org>
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
diff --git a/nuttx/sched/sched_releasetcb.c b/nuttx/sched/sched_releasetcb.c
index 5fd509006..362f67ef5 100644
--- a/nuttx/sched/sched_releasetcb.c
+++ b/nuttx/sched/sched_releasetcb.c
@@ -1,8 +1,8 @@
/************************************************************************
* sched/sched_releasetcb.c
*
- * Copyright (C) 2007, 2009 Gregory Nutt. All rights reserved.
- * Author: Gregory Nutt <spudmonkey@racsa.co.cr>
+ * Copyright (C) 2007, 2009, 2012 Gregory Nutt. All rights reserved.
+ * Author: Gregory Nutt <gnutt@nuttx.org>
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
@@ -175,6 +175,7 @@ int sched_releasetcb(FAR _TCB *tcb)
sched_free(tcb);
}
+
return ret;
}
diff --git a/nuttx/sched/sched_removereadytorun.c b/nuttx/sched/sched_removereadytorun.c
index 46f148150..82c24402c 100644
--- a/nuttx/sched/sched_removereadytorun.c
+++ b/nuttx/sched/sched_removereadytorun.c
@@ -1,8 +1,8 @@
/****************************************************************************
* shced/sched_removereadytorun.c
*
- * Copyright (C) 2007-2009 Gregory Nutt. All rights reserved.
- * Author: Gregory Nutt <spudmonkey@racsa.co.cr>
+ * Copyright (C) 2007-2009, 2012 Gregory Nutt. All rights reserved.
+ * Author: Gregory Nutt <gnutt@nuttx.org>
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
diff --git a/nuttx/sched/task_delete.c b/nuttx/sched/task_delete.c
index 51b3e30da..31715051a 100644
--- a/nuttx/sched/task_delete.c
+++ b/nuttx/sched/task_delete.c
@@ -1,8 +1,8 @@
/****************************************************************************
* sched/task_delete.c
*
- * Copyright (C) 2007-2009, 2011 Gregory Nutt. All rights reserved.
- * Author: Gregory Nutt <spudmonkey@racsa.co.cr>
+ * Copyright (C) 2007-2009, 2011-2012 Gregory Nutt. All rights reserved.
+ * Author: Gregory Nutt <gnutt@nuttx.org>
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
diff --git a/nuttx/sched/task_deletecurrent.c b/nuttx/sched/task_deletecurrent.c
index 0945282c4..77025f5e0 100644
--- a/nuttx/sched/task_deletecurrent.c
+++ b/nuttx/sched/task_deletecurrent.c
@@ -1,8 +1,8 @@
/****************************************************************************
* sched/task_deletecurrent.c
*
- * Copyright (C) 2008-2009 Gregory Nutt. All rights reserved.
- * Author: Gregory Nutt <spudmonkey@racsa.co.cr>
+ * Copyright (C) 2008-2009, 2012 Gregory Nutt. All rights reserved.
+ * Author: Gregory Nutt <gnutt@nuttx.org>
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions