Update the type passed to watchdog timer handlers. Using uint32_t is a problem for 64-bit machines.

This commit is contained in:
Gregory Nutt
2015-05-18 08:53:42 -06:00
parent 82f51d01fb
commit 3adcae8ffb
8 changed files with 59 additions and 58 deletions
+2 -2
View File
@@ -1,7 +1,7 @@
/****************************************************************************
* sched/mqueue/mq_timedreceive.c
*
* Copyright (C) 2007-2009, 2011, 2013-2014 Gregory Nutt. All rights reserved.
* Copyright (C) 2007-2009, 2011, 2013-2015 Gregory Nutt. All rights reserved.
* Author: Gregory Nutt <gnutt@nuttx.org>
*
* Redistribution and use in source and binary forms, with or without
@@ -92,7 +92,7 @@
*
****************************************************************************/
static void mq_rcvtimeout(int argc, uint32_t pid)
static void mq_rcvtimeout(int argc, wdparm_t pid)
{
FAR struct tcb_s *wtcb;
irqstate_t saved_state;
+1 -1
View File
@@ -92,7 +92,7 @@
*
****************************************************************************/
static void mq_sndtimeout(int argc, uint32_t pid)
static void mq_sndtimeout(int argc, wdparm_t pid)
{
FAR struct tcb_s *wtcb;
irqstate_t saved_state;