Browse Source

Numerous cosmetic changes while debugging a telnet driver issue

git-svn-id: https://nuttx.svn.sourceforge.net/svnroot/nuttx/trunk@4353 7fd9a85b-ad96-42d3-883c-3090e2eb8679
sbg
patacongo 13 years ago
parent
commit
ed4ee27f70
  1. 2
      apps/examples/telnetd/shell.c
  2. 4
      nuttx/arch/arm/src/armv7-m/up_unblocktask.c
  3. 4
      nuttx/arch/arm/src/common/up_createstack.c
  4. 4
      nuttx/arch/arm/src/common/up_exit.c
  5. 4
      nuttx/net/net_close.c
  6. 4
      nuttx/sched/exit.c
  7. 5
      nuttx/sched/sched_releasetcb.c
  8. 4
      nuttx/sched/sched_removereadytorun.c
  9. 4
      nuttx/sched/task_delete.c
  10. 4
      nuttx/sched/task_deletecurrent.c

2
apps/examples/telnetd/shell.c

@ -152,7 +152,7 @@ static void shell_parse(FAR char *line, int len) @@ -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];

4
nuttx/arch/arm/src/armv7-m/up_unblocktask.c

@ -1,8 +1,8 @@ @@ -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

4
nuttx/arch/arm/src/common/up_createstack.c

@ -1,8 +1,8 @@ @@ -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

4
nuttx/arch/arm/src/common/up_exit.c

@ -1,8 +1,8 @@ @@ -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

4
nuttx/net/net_close.c

@ -70,10 +70,10 @@ struct tcp_close_s @@ -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

4
nuttx/sched/exit.c

@ -1,8 +1,8 @@ @@ -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

5
nuttx/sched/sched_releasetcb.c

@ -1,8 +1,8 @@ @@ -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) @@ -175,6 +175,7 @@ int sched_releasetcb(FAR _TCB *tcb)
sched_free(tcb);
}
return ret;
}

4
nuttx/sched/sched_removereadytorun.c

@ -1,8 +1,8 @@ @@ -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

4
nuttx/sched/task_delete.c

@ -1,8 +1,8 @@ @@ -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

4
nuttx/sched/task_deletecurrent.c

@ -1,8 +1,8 @@ @@ -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

Loading…
Cancel
Save