From 4c222bcab1917327a42bb8d33be29912b8b77503 Mon Sep 17 00:00:00 2001 From: patacongo Date: Wed, 6 Jun 2012 01:44:57 +0000 Subject: Fix a bad interrupt state in the PIC32 IDLE loop when the work queue is enabled git-svn-id: https://nuttx.svn.sourceforge.net/svnroot/nuttx/trunk@4805 7fd9a85b-ad96-42d3-883c-3090e2eb8679 --- nuttx/mm/mm_sem.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'nuttx/mm') diff --git a/nuttx/mm/mm_sem.c b/nuttx/mm/mm_sem.c index 4b7563c0b..a2d9d5cd1 100644 --- a/nuttx/mm/mm_sem.c +++ b/nuttx/mm/mm_sem.c @@ -2,7 +2,7 @@ * mm/mm_sem.c * * Copyright (C) 2007-2009 Gregory Nutt. All rights reserved. - * Author: Gregory Nutt + * Author: Gregory Nutt * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions @@ -129,7 +129,7 @@ int mm_trysemaphore(void) } else { - /* Try to tak the semaphore (perhaps waiting) */ + /* Try to take the semaphore (perhaps waiting) */ if (sem_trywait(&g_mm_semaphore) != 0) { -- cgit v1.2.3