Titanium JIRA Archive
Titanium SDK/CLI (TIMOB)

[TIMOB-5489] iOS: picker crashes with NSRangeException when there is a delay between creating the picker and adding rows to it

GitHub Issuen/a
TypeBug
PriorityHigh
StatusClosed
ResolutionWon't Fix
Resolution Date2017-07-18T23:03:19.000+0000
Affected Version/sRelease 1.7.2
Fix Version/sn/a
ComponentsiOS
Labelsapi, tbs-1.9.0, training
ReporterJon Alter
AssigneeIngo Muschenetz
Created2011-10-10T11:04:27.000+0000
Updated2017-07-18T23:03:28.000+0000

Description

This error is thrown when creating two pickers and loading them with rows: 'NSRangeException', reason: '*** -[NSMutableArray objectAtIndex:]: index 0 beyond bounds for empty array' This will crash consistently on a iPhone4 It will run fine on the simulator, but you can make it crash with the same error by uncommenting the alert in load().

Repro Steps

Step 1: run the code below on device Step 2: click the test button Step 3: notice the app crash with the error below Step 4: uncomment the alert in the load function Step 5: run the code below on simulator Step 6: click the test button Step 7: notice the app crash with the error below
var field_profile_height = {
	1 : "4\'08\" (142 cm)",
	2 : "4\'09\" (145 cm)",
	3 : "4\'10\" (147 cm)",
	4 : "4\'11\" (150 cm)",
	5 : "5\'00\" (152 cm)",
	6 : "5\'01\" (155 cm)",
	7 : "5\'02\" (157 cm)",
	8 : "5\'03\" (160 cm)",
	9 : "5\'04\" (162 cm)",
	10 : "5\'05\" (165 cm)",
	11 : "5\'06\" (167 cm)",
	12 : "5\'07\" (170 cm)",
	13 : "5\'08\" (173 cm)",
	14 : "5\'09\" (175 cm)",
	15 : "5\'10\" (178 cm)",
	16 : "5\'11\" (180 cm)",
	17 : "6\'00\" (183 cm)",
	18 : "6\'01\" (185 cm)",
	19 : "6\'02\" (188 cm)",
	20 : "6\'03\" (190 cm)",
	21 : "6\'04\" (193 cm)",
	22 : "6\'05\" (195 cm)",
	23 : "6\'06\" (198 cm)",
	24 : "6\'07\" (201 cm)",
	25 : "6\'08\" (203 cm)",
	26 : "6\'09\" (206 cm)",
	27 : "6\'10\" (208 cm)",
	28 : "6\'11\" (211 cm)",
	29 : "7\'00\" (213 cm)",
	30 : "7\'01\" (216 cm)",
	31 : "7\'02\" (218 cm)",
	32 : "7\'03\" (221 cm)",
	33 : "7\'04\" (223 cm)",
	34 : "7\'05\" (226 cm)"
};

var objectToRow = function(items) {
	var array = [];
	for(var index in items ) {
		array.push({
			title : items[index],
			realValue : index
		});
	}
	return array;
};

var SingleColumnPicker = function(updateLabel) {
	var winWidth = 320;
	var winHeight = 480;
	
	var controlView = Ti.UI.createView({
		width : winWidth,
		height : winHeight,
		bottom : 0,
	});

	controlView.add( box = Ti.UI.createPicker({
		bottom : 0,
		selectionIndicator : true,
	}));

	controlView.loadData = function(a) {
		// alert(a);
		box.add(a);
	}
	return controlView;
};

var win = Titanium.UI.createWindow({
	backgroundColor : 'blue'
});
win.open();

var label = Ti.UI.createLabel({
	top : 10,
	height : 50,
	width : 200,
	value : "test"
});
win.add(label);

var btn = Ti.UI.createButton({
	title : 'Test',
	height : 50,
	width : 200,
	bottom : 10
});

btn.addEventListener('click', function(e) {
	heightBox = SingleColumnPicker(label);
	win.add(heightBox);
	heightRows = objectToRow(field_profile_height);
	heightBox.loadData(heightRows);
	
	box2 = SingleColumnPicker(label);
	win.add(box2);
	box2Rows = objectToRow(field_profile_height);
	box2.loadData(box2Rows);

});
win.add(btn);

Oct 10 11:36:53 unknown Test7[83483] <Error>: *** Terminating app due to uncaught exception 'NSRangeException', reason: '*** -[NSMutableArray objectAtIndex:]: index 0 beyond bounds for empty array'
	*** Call stack at first throw:
	(
		0   CoreFoundation                      0x3622864f __exceptionPreprocess + 114
		1   libobjc.A.dylib                     0x308cfc5d objc_exception_throw + 24
		2   CoreFoundation                      0x36193069 -[__NSArrayM objectAtIndex:] + 184
		3   UIKit                               0x35f20f4f -[UIPickerView reloadComponent:] + 38
		4   Test7                               0x000941ef Test7 + 602607
		5   CoreFoundation                      0x36195f03 -[NSObject(NSObject) performSelector:withObject:] + 22
		6   Test7                               0x0004b2f5 Test7 + 303861
		7   Test7                               0x00093b99 Test7 + 600985
		8   Test7                               0x0009282b Test7 + 596011
		9   CoreFoundation                      0x36195f03 -[NSObject(NSObject) performSelector:withObject:] + 22
		10  Foundation                          0x34bff7a9 __NSThreadPerformPerform + 268
		11  CoreFoundation                      0x361ffa79 __CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE0_PERFORM_FUNCTION__ + 12
		12  CoreFoundation                      0x3620175f __CFRunLoopDoSources0 + 382
		13  CoreFoundation                      0x362024eb __CFRunLoopRun + 230
		14  CoreFoundation                      0x36192ec3 CFRunLoopRunSpecific + 230
		15  CoreFoundation                      0x36192dcb CFRunLoopRunInMode + 58
		16  GraphicsServices                    0x35bb241f GSEventRunModal + 114
		17  GraphicsServices                    0x35bb24cb GSEventRun + 62
		18  UIKit                               0x35df9d69 -[UIApplication _run] + 404
		19  UIKit                               0x35df7807 UIApplicationMain + 670
		20  Test7                               0x0000366b Test7 + 9835
		21  Test7                               0x000030dc Test7 + 8412
	)
Oct 10 11:36:53 unknown UIKitApplication:com.appcelerator.test[0x5259][83483] <Notice>: [ERROR] The application has crashed with an unhandled exception. Stack trace:
Oct 10 11:36:53 unknown UIKitApplication:com.appcelerator.test[0x5259][83483] <Notice>: 0   CoreFoundation                      0x3622863d __exceptionPreprocess + 96
Oct 10 11:36:53 unknown UIKitApplication:com.appcelerator.test[0x5259][83483] <Notice>: 1   libobjc.A.dylib                     0x308cfc5d objc_exception_throw + 24
Oct 10 11:36:53 unknown UIKitApplication:com.appcelerator.test[0x5259][83483] <Notice>: 2   CoreFoundation                      0x36193069 -[__NSArrayM objectAtIndex:] + 184
Oct 10 11:36:53 unknown UIKitApplication:com.appcelerator.test[0x5259][83483] <Notice>: 3   UIKit                               0x35f20f4f -[UIPickerView reloadComponent:] + 38
Oct 10 11:36:53 unknown UIKitApplication:com.appcelerator.test[0x5259][83483] <Notice>: 4   Test7                               0x000941ef Test7 + 602607
Oct 10 11:36:53 unknown UIKitApplication:com.appcelerator.test[0x5259][83483] <Notice>: 5   CoreFoundation                      0x36195f03 -[NSObject(NSObject) performSelector:withObject:] + 22
Oct 10 11:36:53 unknown UIKitApplication:com.appcelerator.test[0x5259][83483] <Notice>: 6   Test7                               0x0004b2f5 Test7 + 303861
Oct 10 11:36:53 unknown UIKitApplication:com.appcelerator.test[0x5259][83483] <Notice>: 7   Test7                               0x00093b99 Test7 + 600985
Oct 10 11:36:53 unknown UIKitApplication:com.appcelerator.test[0x5259][83483] <Notice>: 8   Test7                               0x0009282b Test7 + 596011
Oct 10 11:36:53 unknown UIKitApplication:com.appcelerator.test[0x5259][83483] <Notice>: 9   CoreFoundation                      0x36195f03 -[NSObject(NSObject) performSelector:withObject:] + 22
Oct 10 11:36:53 unknown UIKitApplication:com.appcelerator.test[0x5259][83483] <Notice>: 10  Foundation                          0x34bff7a9 __NSThreadPerformPerform + 268
Oct 10 11:36:53 unknown UIKitApplication:com.appcelerator.test[0x5259][83483] <Notice>: 11  CoreFoundation                      0x361ffa79 __CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE0_PERFORM_FUNCTION__ + 12
Oct 10 11:36:53 unknown UIKitApplication:com.appcelerator.test[0x5259][83483] <Notice>: 12  CoreFoundation                      0x3620175f __CFRunLoopDoSources0 + 382
Oct 10 11:36:53 unknown UIKitApplication:com.appcelerator.test[0x5259][83483] <Notice>: 13  CoreFoundation                      0x362024eb __CFRunLoopRun + 230
Oct 10 11:36:53 unknown UIKitApplication:com.appcelerator.test[0x5259][83483] <Notice>: 14  CoreFoundation                      0x36192ec3 CFRunLoopRunSpecific + 230
Oct 10 11:36:53 unknown UIKitApplication:com.appcelerator.test[0x5259][83483] <Notice>: 15  CoreFoundation                      0x36192dcb CFRunLoopRunInMode + 58
Oct 10 11:36:53 unknown UIKitApplication:com.appcelerator.test[0x5259][83483] <Notice>: 16  GraphicsServices                    0x35bb241f GSEventRunModal + 114
Oct 10 11:36:53 unknown UIKitApplication:com.appcelerator.test[0x5259][83483] <Notice>: 17  GraphicsServices                    0x35bb24cb GSEventRun + 62
Oct 10 11:36:53 unknown UIKitApplication:com.appcelerator.test[0x5259][83483] <Notice>: 18  UIKit                               0x35df9d69 -[UIApplication _run] + 404
Oct 10 11:36:53 unknown UIKitApplication:com.appcelerator.test[0x5259][83483] <Notice>: 19  UIKit                               0x35df7807 UIApplicationMain + 670
Oct 10 11:36:53 unknown UIKitApplication:com.appcelerator.test[0x5259][83483] <Notice>: 20  Test7                               0x0000366b Test7 + 9835
Oct 10 11:36:53 unknown UIKitApplication:com.appcelerator.test[0x5259][83483] <Notice>: 21  Test7                               0x000030dc Test7 + 8412
Oct 10 11:36:53 unknown UIKitApplication:com.appcelerator.test[0x5259][83483] <Notice>: terminate called after throwing an instance of 'NSException'
Oct 10 11:36:53 unknown ReportCrash[83485] <Notice>: Formulating crash report for process Test7[83483]
Oct 10 11:36:54 unknown com.apple.launchd[1] <Warning>: (UIKitApplication:com.appcelerator.test[0x5259]) Job appears to have crashed: Abort trap: 6
Oct 10 11:36:54 unknown SpringBoard[39] <Warning>: Application 'Test7' exited abnormally with signal 6: Abort trap: 6
Oct 10 11:36:54 unknown ReportCrash[83485] <Error>: Saved crashreport to /var/mobile/Library/Logs/CrashReporter/Test7_2011-10-10-113653_Jonathans-iPhone.plist using uid: 0 gid: 0, synthetic_euid: 501 egid: 0
Oct 10 11:36:57 unknown com.apple.launchd[1] <Error>: (net.sourceforge.netatalk.afpd) posix_spawn("/usr/sbin/afpd", ...): No such file or directory
Oct 10 11:36:57 unknown com.apple.launchd[1] <Warning>: (net.sourceforge.netatalk.afpd) Exited with exit code: 1
Oct 10 11:36:57 unknown com.apple.launchd[1] <Warning>: (net.sourceforge.netatalk.afpd) Throttling respawn: Will start in 10 seconds
Oct 10 11:37:07 unknown com.apple.launchd[1] <Error>: (net.sourceforge.netatalk.afpd) posix_spawn("/usr/sbin/afpd", ...): No such file or directory
Oct 10 11:37:07 unknown com.apple.launchd[1] <Warning>: (net.sourceforge.netatalk.afpd) Exited with exit code: 1
Oct 10 11:37:07 unknown com.apple.launchd[1] <Warning>: (net.sourceforge.netatalk.afpd) Throttling respawn: Will start in 10 seconds
Oct 10 11:37:17 unknown com.apple.launchd[1] <Error>: (net.sourceforge.netatalk.afpd) posix_spawn("/usr/sbin/afpd", ...): No such file or directory
Oct 10 11:37:17 unknown com.apple.launchd[1] <Warning>: (net.sourceforge.netatalk.afpd) Exited with exit code: 1
Oct 10 11:37:17 unknown com.apple.launchd[1] <Warning>: (net.sourceforge.netatalk.afpd) Throttling respawn: Will start in 10 seconds
Oct 10 11:37:27 unknown com.apple.launchd[1] <Error>: (net.sourceforge.netatalk.afpd) posix_spawn("/usr/sbin/afpd", ...): No such file or directory
Oct 10 11:37:27 unknown com.apple.launchd[1] <Warning>: (net.sourceforge.netatalk.afpd) Exited with exit code: 1
Oct 10 11:37:27 unknown com.apple.launchd[1] <Warning>: (net.sourceforge.netatalk.afpd) Throttling respawn: Will start in 10 seconds
Oct 10 11:37:37 unknown com.apple.launchd[1] <Error>: (net.sourceforge.netatalk.afpd) posix_spawn("/usr/sbin/afpd", ...): No such file or directory
Oct 10 11:37:38 unknown com.apple.launchd[1] <Warning>: (net.sourceforge.netatalk.afpd) Exited with exit code: 1
Oct 10 11:37:38 unknown com.apple.launchd[1] <Warning>: (net.sourceforge.netatalk.afpd) Throttling respawn: Will start in 10 seconds
Oct 10 11:37:48 unknown com.apple.launchd[1] <Error>: (net.sourceforge.netatalk.afpd) posix_spawn("/usr/sbin/afpd", ...): No such file or directory
Oct 10 11:37:48 unknown com.apple.launchd[1] <Warning>: (net.sourceforge.netatalk.afpd) Exited with exit code: 1
Oct 10 11:37:48 unknown com.apple.launchd[1] <Warning>: (net.sourceforge.netatalk.afpd) Throttling respawn: Will start in 10 seconds
Oct 10 11:37:58 unknown com.apple.launchd[1] <Error>: (net.sourceforge.netatalk.afpd) posix_spawn("/usr/sbin/afpd", ...): No such file or directory
Oct 10 11:37:58 unknown com.apple.launchd[1] <Warning>: (net.sourceforge.netatalk.afpd) Exited with exit code: 1
Oct 10 11:37:58 unknown com.apple.launchd[1] <Warning>: (net.sourceforge.netatalk.afpd) Throttling respawn: Will start in 10 seconds
Oct 10 11:38:08 unknown com.apple.launchd[1] <Error>: (net.sourceforge.netatalk.afpd) posix_spawn("/usr/sbin/afpd", ...): No such file or directory
Oct 10 11:38:08 unknown com.apple.launchd[1] <Warning>: (net.sourceforge.netatalk.afpd) Exited with exit code: 1
Oct 10 11:38:08 unknown com.apple.launchd[1] <Warning>: (net.sourceforge.netatalk.afpd) Throttling respawn: Will start in 10 seconds
Oct 10 11:38:18 unknown com.apple.launchd[1] <Error>: (net.sourceforge.netatalk.afpd) posix_spawn("/usr/sbin/afpd", ...): No such file or directory
Oct 10 11:38:18 unknown com.apple.launchd[1] <Warning>: (net.sourceforge.netatalk.afpd) Exited with exit code: 1
Oct 10 11:38:18 unknown com.apple.launchd[1] <Warning>: (net.sourceforge.netatalk.afpd) Throttling respawn: Will start in 10 seconds
Oct 10 11:38:24 unknown SpringBoard[39] <Notice>: MultitouchHID(1dd38be0) uilock state: 0 -> 1
Oct 10 11:38:24 unknown SpringBoard[39] <Warning>: SBSettings: Lock called
Oct 10 11:38:24 unknown SpringBoard[39] <Warning>: SBSettings: Lock called
Oct 10 11:38:28 unknown com.apple.launchd[1] <Error>: (net.sourceforge.netatalk.afpd) posix_spawn("/usr/sbin/afpd", ...): No such file or directory
Oct 10 11:38:28 unknown com.apple.launchd[1] <Warning>: (net.sourceforge.netatalk.afpd) Exited with exit code: 1
Oct 10 11:38:28 unknown com.apple.launchd[1] <Warning>: (net.sourceforge.netatalk.afpd) Throttling respawn: Will start in 10 seconds
Oct 10 11:38:38 unknown com.apple.launchd[1] <Error>: (net.sourceforge.netatalk.afpd) posix_spawn("/usr/sbin/afpd", ...): No such file or directory
Oct 10 11:38:38 unknown com.apple.launchd[1] <Warning>: (net.sourceforge.netatalk.afpd) Exited with exit code: 1
Oct 10 11:38:38 unknown com.apple.launchd[1] <Warning>: (net.sourceforge.netatalk.afpd) Throttling respawn: Will start in 10 seconds
Oct 10 11:38:48 unknown com.apple.launchd[1] <Error>: (net.sourceforge.netatalk.afpd) posix_spawn("/usr/sbin/afpd", ...): No such file or directory
Oct 10 11:38:48 unknown com.apple.launchd[1] <Warning>: (net.sourceforge.netatalk.afpd) Exited with exit code: 1
Oct 10 11:38:48 unknown com.apple.launchd[1] <Warning>: (net.sourceforge.netatalk.afpd) Throttling respawn: Will start in 10 seconds
Oct 10 11:38:58 unknown com.apple.launchd[1] <Error>: (net.sourceforge.netatalk.afpd) posix_spawn("/usr/sbin/afpd", ...): No such file or directory
Oct 10 11:38:58 unknown com.apple.launchd[1] <Warning>: (net.sourceforge.netatalk.afpd) Exited with exit code: 1
Oct 10 11:38:58 unknown com.apple.launchd[1] <Warning>: (net.sourceforge.netatalk.afpd) Throttling respawn: Will start in 10 seconds
Oct 10 11:39:08 unknown com.apple.launchd[1] <Error>: (net.sourceforge.netatalk.afpd) posix_spawn("/usr/sbin/afpd", ...): No such file or directory
Oct 10 11:39:08 unknown com.apple.launchd[1] <Warning>: (net.sourceforge.netatalk.afpd) Exited with exit code: 1
Oct 10 11:39:08 unknown com.apple.launchd[1] <Warning>: (net.sourceforge.netatalk.afpd) Throttling respawn: Will start in 10 seconds
Oct 10 11:39:18 unknown com.apple.launchd[1] <Error>: (net.sourceforge.netatalk.afpd) posix_spawn("/usr/sbin/afpd", ...): No such file or directory
Oct 10 11:39:18 unknown com.apple.launchd[1] <Warning>: (net.sourceforge.netatalk.afpd) Exited with exit code: 1
Oct 10 11:39:18 unknown com.apple.launchd[1] <Warning>: (net.sourceforge.netatalk.afpd) Throttling respawn: Will start in 10 seconds
Oct 10 11:39:28 unknown com.apple.launchd[1] <Error>: (net.sourceforge.netatalk.afpd) posix_spawn("/usr/sbin/afpd", ...): No such file or directory
Oct 10 11:39:28 unknown com.apple.launchd[1] <Warning>: (net.sourceforge.netatalk.afpd) Exited with exit code: 1
Oct 10 11:39:28 unknown com.apple.launchd[1] <Warning>: (net.sourceforge.netatalk.afpd) Throttling respawn: Will start in 10 seconds
Oct 10 11:39:38 unknown com.apple.launchd[1] <Error>: (net.sourceforge.netatalk.afpd) posix_spawn("/usr/sbin/afpd", ...): No such file or directory
Oct 10 11:39:38 unknown com.apple.launchd[1] <Warning>: (net.sourceforge.netatalk.afpd) Exited with exit code: 1
Oct 10 11:39:38 unknown com.apple.launchd[1] <Warning>: (net.sourceforge.netatalk.afpd) Throttling respawn: Will start in 10 seconds
Oct 10 11:39:48 unknown com.apple.launchd[1] <Error>: (net.sourceforge.netatalk.afpd) posix_spawn("/usr/sbin/afpd", ...): No such file or directory
Oct 10 11:39:48 unknown com.apple.launchd[1] <Warning>: (net.sourceforge.netatalk.afpd) Exited with exit code: 1
Oct 10 11:39:48 unknown com.apple.launchd[1] <Warning>: (net.sourceforge.netatalk.afpd) Throttling respawn: Will start in 10 seconds
Oct 10 11:39:58 unknown com.apple.launchd[1] <Error>: (net.sourceforge.netatalk.afpd) posix_spawn("/usr/sbin/afpd", ...): No such file or directory
Oct 10 11:39:58 unknown com.apple.launchd[1] <Warning>: (net.sourceforge.netatalk.afpd) Exited with exit code: 1
Oct 10 11:39:58 unknown com.apple.launchd[1] <Warning>: (net.sourceforge.netatalk.afpd) Throttling respawn: Will start in 10 seconds
Oct 10 11:40:08 unknown com.apple.launchd[1] <Error>: (net.sourceforge.netatalk.afpd) posix_spawn("/usr/sbin/afpd", ...): No such file or directory
Oct 10 11:40:08 unknown com.apple.launchd[1] <Warning>: (net.sourceforge.netatalk.afpd) Exited with exit code: 1
Oct 10 11:40:08 unknown com.apple.launchd[1] <Warning>: (net.sourceforge.netatalk.afpd) Throttling respawn: Will start in 10 seconds
Oct 10 11:40:18 unknown com.apple.launchd[1] <Error>: (net.sourceforge.netatalk.afpd) posix_spawn("/usr/sbin/afpd", ...): No such file or directory
Oct 10 11:40:18 unknown com.apple.launchd[1] <Warning>: (net.sourceforge.netatalk.afpd) Exited with exit code: 1
Oct 10 11:40:18 unknown com.apple.launchd[1] <Warning>: (net.sourceforge.netatalk.afpd) Throttling respawn: Will start in 10 seconds
Oct 10 11:40:24 unknown SCHelper[5817] <Notice>: active (but IDLE) sessions
Oct 10 11:40:24 unknown SCHelper[5817] <Notice>:   0x1ed05340 {port = 0x3867, caller = SpringBoard(39):com.apple.preferences, path = /Library/Preferences/SystemConfiguration/preferences.plist}
Oct 10 11:40:24 unknown SCHelper[5817] <Notice>:   0x1ed07760 {port = 0x4027, caller = Preferences(68112):MobileVPN, path = /Library/Preferences/SystemConfiguration/preferences.plist}
Oct 10 11:40:24 unknown SCHelper[5817] <Notice>:   0x1ed058a0 {port = 0x4ddb, caller = SpringBoard(39):com.apple.springboard, path = /Library/Preferences/SystemConfiguration/com.apple.radios.plist}
Oct 10 11:40:28 unknown com.apple.launchd[1] <Error>: (net.sourceforge.netatalk.afpd) posix_spawn("/usr/sbin/afpd", ...): No such file or directory
Oct 10 11:40:28 unknown com.apple.launchd[1] <Warning>: (net.sourceforge.netatalk.afpd) Exited with exit code: 1
Oct 10 11:40:28 unknown com.apple.launchd[1] <Warning>: (net.sourceforge.netatalk.afpd) Throttling respawn: Will start in 10 seconds
Oct 10 11:40:38 unknown com.apple.launchd[1] <Error>: (net.sourceforge.netatalk.afpd) posix_spawn("/usr/sbin/afpd", ...): No such file or directory
Oct 10 11:40:38 unknown com.apple.launchd[1] <Warning>: (net.sourceforge.netatalk.afpd) Exited with exit code: 1
Oct 10 11:40:38 unknown com.apple.launchd[1] <Warning>: (net.sourceforge.netatalk.afpd) Throttling respawn: Will start in 10 seconds
Oct 10 11:40:48 unknown com.apple.launchd[1] <Error>: (net.sourceforge.netatalk.afpd) posix_spawn("/usr/sbin/afpd", ...): No such file or directory
Oct 10 11:40:48 unknown com.apple.launchd[1] <Warning>: (net.sourceforge.netatalk.afpd) Exited with exit code: 1
Oct 10 11:40:48 unknown com.apple.launchd[1] <Warning>: (net.sourceforge.netatalk.afpd) Throttling respawn: Will start in 10 seconds
Oct 10 11:40:58 unknown com.apple.launchd[1] <Error>: (net.sourceforge.netatalk.afpd) posix_spawn("/usr/sbin/afpd", ...): No such file or directory
Oct 10 11:40:58 unknown com.apple.launchd[1] <Warning>: (net.sourceforge.netatalk.afpd) Exited with exit code: 1
Oct 10 11:40:58 unknown com.apple.launchd[1] <Warning>: (net.sourceforge.netatalk.afpd) Throttling respawn: Will start in 10 seconds
Oct 10 11:41:08 unknown com.apple.launchd[1] <Error>: (net.sourceforge.netatalk.afpd) posix_spawn("/usr/sbin/afpd", ...): No such file or directory
Oct 10 11:41:08 unknown com.apple.launchd[1] <Warning>: (net.sourceforge.netatalk.afpd) Exited with exit code: 1
Oct 10 11:41:08 unknown com.apple.launchd[1] <Warning>: (net.sourceforge.netatalk.afpd) Throttling respawn: Will start in 10 seconds
Oct 10 11:41:18 unknown com.apple.launchd[1] <Error>: (net.sourceforge.netatalk.afpd) posix_spawn("/usr/sbin/afpd", ...): No such file or directory
Oct 10 11:41:18 unknown com.apple.launchd[1] <Warning>: (net.sourceforge.netatalk.afpd) Exited with exit code: 1
Oct 10 11:41:18 unknown com.apple.launchd[1] <Warning>: (net.sourceforge.netatalk.afpd) Throttling respawn: Will start in 10 seconds
Oct 10 11:41:28 unknown com.apple.launchd[1] <Error>: (net.sourceforge.netatalk.afpd) posix_spawn("/usr/sbin/afpd", ...): No such file or directory
Oct 10 11:41:28 unknown com.apple.launchd[1] <Warning>: (net.sourceforge.netatalk.afpd) Exited with exit code: 1
Oct 10 11:41:28 unknown com.apple.launchd[1] <Warning>: (net.sourceforge.netatalk.afpd) Throttling respawn: Will start in 10 seconds
Oct 10 11:41:38 unknown com.apple.launchd[1] <Error>: (net.sourceforge.netatalk.afpd) posix_spawn("/usr/sbin/afpd", ...): No such file or directory
Oct 10 11:41:38 unknown com.apple.launchd[1] <Warning>: (net.sourceforge.netatalk.afpd) Exited with exit code: 1
Oct 10 11:41:38 unknown com.apple.launchd[1] <Warning>: (net.sourceforge.netatalk.afpd) Throttling respawn: Will start in 10 seconds
Oct 10 11:41:48 unknown com.apple.launchd[1] <Error>: (net.sourceforge.netatalk.afpd) posix_spawn("/usr/sbin/afpd", ...): No such file or directory
Oct 10 11:41:48 unknown com.apple.launchd[1] <Warning>: (net.sourceforge.netatalk.afpd) Exited with exit code: 1
Oct 10 11:41:48 unknown com.apple.launchd[1] <Warning>: (net.sourceforge.netatalk.afpd) Throttling respawn: Will start in 10 seconds
Oct 10 11:41:58 unknown com.apple.launchd[1] <Error>: (net.sourceforge.netatalk.afpd) posix_spawn("/usr/sbin/afpd", ...): No such file or directory
Oct 10 11:41:58 unknown com.apple.launchd[1] <Warning>: (net.sourceforge.netatalk.afpd) Exited with exit code: 1
Oct 10 11:41:58 unknown com.apple.launchd[1] <Warning>: (net.sourceforge.netatalk.afpd) Throttling respawn: Will start in 10 seconds
Oct 10 11:42:08 unknown com.apple.launchd[1] <Error>: (net.sourceforge.netatalk.afpd) posix_spawn("/usr/sbin/afpd", ...): No such file or directory
Oct 10 11:42:08 unknown com.apple.launchd[1] <Warning>: (net.sourceforge.netatalk.afpd) Exited with exit code: 1
Oct 10 11:42:08 unknown com.apple.launchd[1] <Warning>: (net.sourceforge.netatalk.afpd) Throttling respawn: Will start in 10 seconds
Oct 10 11:42:18 unknown com.apple.launchd[1] <Error>: (net.sourceforge.netatalk.afpd) posix_spawn("/usr/sbin/afpd", ...): No such file or directory
Oct 10 11:42:18 unknown com.apple.launchd[1] <Warning>: (net.sourceforge.netatalk.afpd) Exited with exit code: 1
Oct 10 11:42:18 unknown com.apple.launchd[1] <Warning>: (net.sourceforge.netatalk.afpd) Throttling respawn: Will start in 10 seconds
Oct 10 11:42:28 unknown com.apple.launchd[1] <Error>: (net.sourceforge.netatalk.afpd) posix_spawn("/usr/sbin/afpd", ...): No such file or directory
Oct 10 11:42:28 unknown com.apple.launchd[1] <Warning>: (net.sourceforge.netatalk.afpd) Exited with exit code: 1
Oct 10 11:42:28 unknown com.apple.launchd[1] <Warning>: (net.sourceforge.netatalk.afpd) Throttling respawn: Will start in 10 seconds
Oct 10 11:42:38 unknown com.apple.launchd[1] <Error>: (net.sourceforge.netatalk.afpd) posix_spawn("/usr/sbin/afpd", ...): No such file or directory
Oct 10 11:42:38 unknown com.apple.launchd[1] <Warning>: (net.sourceforge.netatalk.afpd) Exited with exit code: 1
Oct 10 11:42:38 unknown com.apple.launchd[1] <Warning>: (net.sourceforge.netatalk.afpd) Throttling respawn: Will start in 10 seconds
Oct 10 11:42:48 unknown com.apple.launchd[1] <Error>: (net.sourceforge.netatalk.afpd) posix_spawn("/usr/sbin/afpd", ...): No such file or directory
Oct 10 11:42:48 unknown com.apple.launchd[1] <Warning>: (net.sourceforge.netatalk.afpd) Exited with exit code: 1
Oct 10 11:42:48 unknown com.apple.launchd[1] <Warning>: (net.sourceforge.netatalk.afpd) Throttling respawn: Will start in 10 seconds
Oct 10 11:42:58 unknown com.apple.launchd[1] <Error>: (net.sourceforge.netatalk.afpd) posix_spawn("/usr/sbin/afpd", ...): No such file or directory
Oct 10 11:42:58 unknown com.apple.launchd[1] <Warning>: (net.sourceforge.netatalk.afpd) Exited with exit code: 1
Oct 10 11:42:58 unknown com.apple.launchd[1] <Warning>: (net.sourceforge.netatalk.afpd) Throttling respawn: Will start in 10 seconds
Oct 10 11:43:08 unknown com.apple.launchd[1] <Error>: (net.sourceforge.netatalk.afpd) posix_spawn("/usr/sbin/afpd", ...): No such file or directory
Oct 10 11:43:08 unknown com.apple.launchd[1] <Warning>: (net.sourceforge.netatalk.afpd) Exited with exit code: 1
Oct 10 11:43:08 unknown com.apple.launchd[1] <Warning>: (net.sourceforge.netatalk.afpd) Throttling respawn: Will start in 10 seconds
Oct 10 11:43:18 unknown com.apple.launchd[1] <Error>: (net.sourceforge.netatalk.afpd) posix_spawn("/usr/sbin/afpd", ...): No such file or directory
Oct 10 11:43:18 unknown com.apple.launchd[1] <Warning>: (net.sourceforge.netatalk.afpd) Exited with exit code: 1
Oct 10 11:43:18 unknown com.apple.launchd[1] <Warning>: (net.sourceforge.netatalk.afpd) Throttling respawn: Will start in 10 seconds
Oct 10 11:43:28 unknown com.apple.launchd[1] <Error>: (net.sourceforge.netatalk.afpd) posix_spawn("/usr/sbin/afpd", ...): No such file or directory
Oct 10 11:43:28 unknown com.apple.launchd[1] <Warning>: (net.sourceforge.netatalk.afpd) Exited with exit code: 1
Oct 10 11:43:28 unknown com.apple.launchd[1] <Warning>: (net.sourceforge.netatalk.afpd) Throttling respawn: Will start in 10 seconds
Oct 10 11:43:38 unknown com.apple.launchd[1] <Error>: (net.sourceforge.netatalk.afpd) posix_spawn("/usr/sbin/afpd", ...): No such file or directory
Oct 10 11:43:39 unknown com.apple.launchd[1] <Warning>: (net.sourceforge.netatalk.afpd) Exited with exit code: 1
Oct 10 11:43:39 unknown com.apple.launchd[1] <Warning>: (net.sourceforge.netatalk.afpd) Throttling respawn: Will start in 10 seconds
Oct 10 11:43:49 unknown com.apple.launchd[1] <Error>: (net.sourceforge.netatalk.afpd) posix_spawn("/usr/sbin/afpd", ...): No such file or directory
Oct 10 11:43:49 unknown com.apple.launchd[1] <Warning>: (net.sourceforge.netatalk.afpd) Exited with exit code: 1
Oct 10 11:43:49 unknown com.apple.launchd[1] <Warning>: (net.sourceforge.netatalk.afpd) Throttling respawn: Will start in 10 seconds
Oct 10 11:43:59 unknown com.apple.launchd[1] <Error>: (net.sourceforge.netatalk.afpd) posix_spawn("/usr/sbin/afpd", ...): No such file or directory
Oct 10 11:43:59 unknown com.apple.launchd[1] <Warning>: (net.sourceforge.netatalk.afpd) Exited with exit code: 1
Oct 10 11:43:59 unknown com.apple.launchd[1] <Warning>: (net.sourceforge.netatalk.afpd) Throttling respawn: Will start in 10 seconds
Oct 10 11:44:09 unknown com.apple.launchd[1] <Error>: (net.sourceforge.netatalk.afpd) posix_spawn("/usr/sbin/afpd", ...): No such file or directory
Oct 10 11:44:09 unknown com.apple.launchd[1] <Warning>: (net.sourceforge.netatalk.afpd) Exited with exit code: 1
Oct 10 11:44:09 unknown com.apple.launchd[1] <Warning>: (net.sourceforge.netatalk.afpd) Throttling respawn: Will start in 10 seconds
Oct 10 11:44:19 unknown com.apple.launchd[1] <Error>: (net.sourceforge.netatalk.afpd) posix_spawn("/usr/sbin/afpd", ...): No such file or directory
Oct 10 11:44:19 unknown com.apple.launchd[1] <Warning>: (net.sourceforge.netatalk.afpd) Exited with exit code: 1
Oct 10 11:44:19 unknown com.apple.launchd[1] <Warning>: (net.sourceforge.netatalk.afpd) Throttling respawn: Will start in 10 seconds
Oct 10 11:44:29 unknown com.apple.launchd[1] <Error>: (net.sourceforge.netatalk.afpd) posix_spawn("/usr/sbin/afpd", ...): No such file or directory
Oct 10 11:44:29 unknown com.apple.launchd[1] <Warning>: (net.sourceforge.netatalk.afpd) Exited with exit code: 1
Oct 10 11:44:29 unknown com.apple.launchd[1] <Warning>: (net.sourceforge.netatalk.afpd) Throttling respawn: Will start in 10 seconds
Oct 10 11:44:39 unknown com.apple.launchd[1] <Error>: (net.sourceforge.netatalk.afpd) posix_spawn("/usr/sbin/afpd", ...): No such file or directory
Oct 10 11:44:39 unknown com.apple.launchd[1] <Warning>: (net.sourceforge.netatalk.afpd) Exited with exit code: 1
Oct 10 11:44:39 unknown com.apple.launchd[1] <Warning>: (net.sourceforge.netatalk.afpd) Throttling respawn: Will start in 10 seconds
Oct 10 11:44:49 unknown com.apple.launchd[1] <Error>: (net.sourceforge.netatalk.afpd) posix_spawn("/usr/sbin/afpd", ...): No such file or directory
Oct 10 11:44:49 unknown com.apple.launchd[1] <Warning>: (net.sourceforge.netatalk.afpd) Exited with exit code: 1
Oct 10 11:44:49 unknown com.apple.launchd[1] <Warning>: (net.sourceforge.netatalk.afpd) Throttling respawn: Will start in 10 seconds
Oct 10 11:44:59 unknown com.apple.launchd[1] <Error>: (net.sourceforge.netatalk.afpd) posix_spawn("/usr/sbin/afpd", ...): No such file or directory
Oct 10 11:44:59 unknown com.apple.launchd[1] <Warning>: (net.sourceforge.netatalk.afpd) Exited with exit code: 1
Oct 10 11:44:59 unknown com.apple.launchd[1] <Warning>: (net.sourceforge.netatalk.afpd) Throttling respawn: Will start in 10 seconds
Oct 10 11:45:09 unknown com.apple.launchd[1] <Error>: (net.sourceforge.netatalk.afpd) posix_spawn("/usr/sbin/afpd", ...): No such file or directory
Oct 10 11:45:09 unknown com.apple.launchd[1] <Warning>: (net.sourceforge.netatalk.afpd) Exited with exit code: 1
Oct 10 11:45:09 unknown com.apple.launchd[1] <Warning>: (net.sourceforge.netatalk.afpd) Throttling respawn: Will start in 10 seconds
Oct 10 11:45:19 unknown com.apple.launchd[1] <Error>: (net.sourceforge.netatalk.afpd) posix_spawn("/usr/sbin/afpd", ...): No such file or directory
Oct 10 11:45:19 unknown com.apple.launchd[1] <Warning>: (net.sourceforge.netatalk.afpd) Exited with exit code: 1
Oct 10 11:45:19 unknown com.apple.launchd[1] <Warning>: (net.sourceforge.netatalk.afpd) Throttling respawn: Will start in 10 seconds
Oct 10 11:45:29 unknown com.apple.launchd[1] <Error>: (net.sourceforge.netatalk.afpd) posix_spawn("/usr/sbin/afpd", ...): No such file or directory
Oct 10 11:45:29 unknown com.apple.launchd[1] <Warning>: (net.sourceforge.netatalk.afpd) Exited with exit code: 1
Oct 10 11:45:29 unknown com.apple.launchd[1] <Warning>: (net.sourceforge.netatalk.afpd) Throttling respawn: Will start in 10 seconds
Oct 10 11:45:39 unknown com.apple.launchd[1] <Error>: (net.sourceforge.netatalk.afpd) posix_spawn("/usr/sbin/afpd", ...): No such file or directory
Oct 10 11:45:39 unknown com.apple.launchd[1] <Warning>: (net.sourceforge.netatalk.afpd) Exited with exit code: 1
Oct 10 11:45:39 unknown com.apple.launchd[1] <Warning>: (net.sourceforge.netatalk.afpd) Throttling respawn: Will start in 10 seconds
Oct 10 11:45:49 unknown com.apple.launchd[1] <Error>: (net.sourceforge.netatalk.afpd) posix_spawn("/usr/sbin/afpd", ...): No such file or directory
Oct 10 11:45:49 unknown com.apple.launchd[1] <Warning>: (net.sourceforge.netatalk.afpd) Exited with exit code: 1
Oct 10 11:45:49 unknown com.apple.launchd[1] <Warning>: (net.sourceforge.netatalk.afpd) Throttling respawn: Will start in 10 seconds
Oct 10 11:45:59 unknown com.apple.launchd[1] <Error>: (net.sourceforge.netatalk.afpd) posix_spawn("/usr/sbin/afpd", ...): No such file or directory
Oct 10 11:45:59 unknown com.apple.launchd[1] <Warning>: (net.sourceforge.netatalk.afpd) Exited with exit code: 1
Oct 10 11:45:59 unknown com.apple.launchd[1] <Warning>: (net.sourceforge.netatalk.afpd) Throttling respawn: Will start in 10 seconds
Oct 10 11:46:09 unknown com.apple.launchd[1] <Error>: (net.sourceforge.netatalk.afpd) posix_spawn("/usr/sbin/afpd", ...): No such file or directory
Oct 10 11:46:09 unknown com.apple.launchd[1] <Warning>: (net.sourceforge.netatalk.afpd) Exited with exit code: 1
Oct 10 11:46:09 unknown com.apple.launchd[1] <Warning>: (net.sourceforge.netatalk.afpd) Throttling respawn: Will start in 10 seconds
Oct 10 11:46:19 unknown com.apple.launchd[1] <Error>: (net.sourceforge.netatalk.afpd) posix_spawn("/usr/sbin/afpd", ...): No such file or directory
Oct 10 11:46:19 unknown com.apple.launchd[1] <Warning>: (net.sourceforge.netatalk.afpd) Exited with exit code: 1
Oct 10 11:46:19 unknown com.apple.launchd[1] <Warning>: (net.sourceforge.netatalk.afpd) Throttling respawn: Will start in 10 seconds
Oct 10 11:46:29 unknown com.apple.launchd[1] <Error>: (net.sourceforge.netatalk.afpd) posix_spawn("/usr/sbin/afpd", ...): No such file or directory
Oct 10 11:46:29 unknown com.apple.launchd[1] <Warning>: (net.sourceforge.netatalk.afpd) Exited with exit code: 1
Oct 10 11:46:29 unknown com.apple.launchd[1] <Warning>: (net.sourceforge.netatalk.afpd) Throttling respawn: Will start in 10 seconds
Oct 10 11:46:39 unknown com.apple.launchd[1] <Error>: (net.sourceforge.netatalk.afpd) posix_spawn("/usr/sbin/afpd", ...): No such file or directory
Oct 10 11:46:39 unknown com.apple.launchd[1] <Warning>: (net.sourceforge.netatalk.afpd) Exited with exit code: 1
Oct 10 11:46:39 unknown com.apple.launchd[1] <Warning>: (net.sourceforge.netatalk.afpd) Throttling respawn: Will start in 10 seconds
Oct 10 11:46:49 unknown com.apple.launchd[1] <Error>: (net.sourceforge.netatalk.afpd) posix_spawn("/usr/sbin/afpd", ...): No such file or directory
Oct 10 11:46:49 unknown com.apple.launchd[1] <Warning>: (net.sourceforge.netatalk.afpd) Exited with exit code: 1
Oct 10 11:46:49 unknown com.apple.launchd[1] <Warning>: (net.sourceforge.netatalk.afpd) Throttling respawn: Will start in 10 seconds
Oct 10 11:46:59 unknown com.apple.launchd[1] <Error>: (net.sourceforge.netatalk.afpd) posix_spawn("/usr/sbin/afpd", ...): No such file or directory
Oct 10 11:46:59 unknown com.apple.launchd[1] <Warning>: (net.sourceforge.netatalk.afpd) Exited with exit code: 1
Oct 10 11:46:59 unknown com.apple.launchd[1] <Warning>: (net.sourceforge.netatalk.afpd) Throttling respawn: Will start in 10 seconds
Oct 10 11:47:09 unknown com.apple.launchd[1] <Error>: (net.sourceforge.netatalk.afpd) posix_spawn("/usr/sbin/afpd", ...): No such file or directory
Oct 10 11:47:09 unknown com.apple.launchd[1] <Warning>: (net.sourceforge.netatalk.afpd) Exited with exit code: 1
Oct 10 11:47:09 unknown com.apple.launchd[1] <Warning>: (net.sourceforge.netatalk.afpd) Throttling respawn: Will start in 10 seconds
Oct 10 11:47:19 unknown com.apple.launchd[1] <Error>: (net.sourceforge.netatalk.afpd) posix_spawn("/usr/sbin/afpd", ...): No such file or directory
Oct 10 11:47:19 unknown com.apple.launchd[1] <Warning>: (net.sourceforge.netatalk.afpd) Exited with exit code: 1
Oct 10 11:47:19 unknown com.apple.launchd[1] <Warning>: (net.sourceforge.netatalk.afpd) Throttling respawn: Will start in 10 seconds
Oct 10 11:47:29 unknown com.apple.launchd[1] <Error>: (net.sourceforge.netatalk.afpd) posix_spawn("/usr/sbin/afpd", ...): No such file or directory
Oct 10 11:47:29 unknown com.apple.launchd[1] <Warning>: (net.sourceforge.netatalk.afpd) Exited with exit code: 1
Oct 10 11:47:29 unknown com.apple.launchd[1] <Warning>: (net.sourceforge.netatalk.afpd) Throttling respawn: Will start in 10 seconds
Oct 10 11:47:39 unknown com.apple.launchd[1] <Error>: (net.sourceforge.netatalk.afpd) posix_spawn("/usr/sbin/afpd", ...): No such file or directory
Oct 10 11:47:39 unknown com.apple.launchd[1] <Warning>: (net.sourceforge.netatalk.afpd) Exited with exit code: 1
Oct 10 11:47:39 unknown com.apple.launchd[1] <Warning>: (net.sourceforge.netatalk.afpd) Throttling respawn: Will start in 10 seconds
Oct 10 11:47:49 unknown com.apple.launchd[1] <Error>: (net.sourceforge.netatalk.afpd) posix_spawn("/usr/sbin/afpd", ...): No such file or directory
Oct 10 11:47:49 unknown com.apple.launchd[1] <Warning>: (net.sourceforge.netatalk.afpd) Exited with exit code: 1
Oct 10 11:47:49 unknown com.apple.launchd[1] <Warning>: (net.sourceforge.netatalk.afpd) Throttling respawn: Will start in 10 seconds
Oct 10 11:47:59 unknown com.apple.launchd[1] <Error>: (net.sourceforge.netatalk.afpd) posix_spawn("/usr/sbin/afpd", ...): No such file or directory
Oct 10 11:47:59 unknown com.apple.launchd[1] <Warning>: (net.sourceforge.netatalk.afpd) Exited with exit code: 1
Oct 10 11:47:59 unknown com.apple.launchd[1] <Warning>: (net.sourceforge.netatalk.afpd) Throttling respawn: Will start in 10 seconds
Oct 10 11:48:09 unknown com.apple.launchd[1] <Error>: (net.sourceforge.netatalk.afpd) posix_spawn("/usr/sbin/afpd", ...): No such file or directory
Oct 10 11:48:09 unknown com.apple.launchd[1] <Warning>: (net.sourceforge.netatalk.afpd) Exited with exit code: 1
Oct 10 11:48:09 unknown com.apple.launchd[1] <Warning>: (net.sourceforge.netatalk.afpd) Throttling respawn: Will start in 10 seconds
Oct 10 11:48:19 unknown com.apple.launchd[1] <Error>: (net.sourceforge.netatalk.afpd) posix_spawn("/usr/sbin/afpd", ...): No such file or directory
Oct 10 11:48:19 unknown com.apple.launchd[1] <Warning>: (net.sourceforge.netatalk.afpd) Exited with exit code: 1
Oct 10 11:48:19 unknown com.apple.launchd[1] <Warning>: (net.sourceforge.netatalk.afpd) Throttling respawn: Will start in 10 seconds
Oct 10 11:48:29 unknown com.apple.launchd[1] <Error>: (net.sourceforge.netatalk.afpd) posix_spawn("/usr/sbin/afpd", ...): No such file or directory
Oct 10 11:48:29 unknown com.apple.launchd[1] <Warning>: (net.sourceforge.netatalk.afpd) Exited with exit code: 1
Oct 10 11:48:29 unknown com.apple.launchd[1] <Warning>: (net.sourceforge.netatalk.afpd) Throttling respawn: Will start in 10 seconds
Oct 10 11:48:39 unknown com.apple.launchd[1] <Error>: (net.sourceforge.netatalk.afpd) posix_spawn("/usr/sbin/afpd", ...): No such file or directory
Oct 10 11:48:39 unknown com.apple.launchd[1] <Warning>: (net.sourceforge.netatalk.afpd) Exited with exit code: 1
Oct 10 11:48:39 unknown com.apple.launchd[1] <Warning>: (net.sourceforge.netatalk.afpd) Throttling respawn: Will start in 10 seconds
Oct 10 11:48:49 unknown com.apple.launchd[1] <Error>: (net.sourceforge.netatalk.afpd) posix_spawn("/usr/sbin/afpd", ...): No such file or directory
Oct 10 11:48:49 unknown com.apple.launchd[1] <Warning>: (net.sourceforge.netatalk.afpd) Exited with exit code: 1
Oct 10 11:48:49 unknown com.apple.launchd[1] <Warning>: (net.sourceforge.netatalk.afpd) Throttling respawn: Will start in 10 seconds
Oct 10 11:48:59 unknown com.apple.launchd[1] <Error>: (net.sourceforge.netatalk.afpd) posix_spawn("/usr/sbin/afpd", ...): No such file or directory
Oct 10 11:48:59 unknown com.apple.launchd[1] <Warning>: (net.sourceforge.netatalk.afpd) Exited with exit code: 1
Oct 10 11:48:59 unknown com.apple.launchd[1] <Warning>: (net.sourceforge.netatalk.afpd) Throttling respawn: Will start in 10 seconds
Oct 10 11:49:09 unknown com.apple.launchd[1] <Error>: (net.sourceforge.netatalk.afpd) posix_spawn("/usr/sbin/afpd", ...): No such file or directory
Oct 10 11:49:09 unknown com.apple.launchd[1] <Warning>: (net.sourceforge.netatalk.afpd) Exited with exit code: 1
Oct 10 11:49:09 unknown com.apple.launchd[1] <Warning>: (net.sourceforge.netatalk.afpd) Throttling respawn: Will start in 10 seconds
Oct 10 11:49:19 unknown com.apple.launchd[1] <Error>: (net.sourceforge.netatalk.afpd) posix_spawn("/usr/sbin/afpd", ...): No such file or directory
Oct 10 11:49:19 unknown com.apple.launchd[1] <Warning>: (net.sourceforge.netatalk.afpd) Exited with exit code: 1
Oct 10 11:49:19 unknown com.apple.launchd[1] <Warning>: (net.sourceforge.netatalk.afpd) Throttling respawn: Will start in 10 seconds
Oct 10 11:49:29 unknown com.apple.launchd[1] <Error>: (net.sourceforge.netatalk.afpd) posix_spawn("/usr/sbin/afpd", ...): No such file or directory
Oct 10 11:49:29 unknown com.apple.launchd[1] <Warning>: (net.sourceforge.netatalk.afpd) Exited with exit code: 1
Oct 10 11:49:29 unknown com.apple.launchd[1] <Warning>: (net.sourceforge.netatalk.afpd) Throttling respawn: Will start in 10 seconds
Oct 10 11:49:39 unknown com.apple.launchd[1] <Error>: (net.sourceforge.netatalk.afpd) posix_spawn("/usr/sbin/afpd", ...): No such file or directory
Oct 10 11:49:40 unknown com.apple.launchd[1] <Warning>: (net.sourceforge.netatalk.afpd) Exited with exit code: 1
Oct 10 11:49:40 unknown com.apple.launchd[1] <Warning>: (net.sourceforge.netatalk.afpd) Throttling respawn: Will start in 10 seconds
Oct 10 11:49:50 unknown com.apple.launchd[1] <Error>: (net.sourceforge.netatalk.afpd) posix_spawn("/usr/sbin/afpd", ...): No such file or directory
Oct 10 11:49:50 unknown com.apple.launchd[1] <Warning>: (net.sourceforge.netatalk.afpd) Exited with exit code: 1
Oct 10 11:49:50 unknown com.apple.launchd[1] <Warning>: (net.sourceforge.netatalk.afpd) Throttling respawn: Will start in 10 seconds
Oct 10 11:50:00 unknown com.apple.launchd[1] <Error>: (net.sourceforge.netatalk.afpd) posix_spawn("/usr/sbin/afpd", ...): No such file or directory
Oct 10 11:50:00 unknown com.apple.launchd[1] <Warning>: (net.sourceforge.netatalk.afpd) Exited with exit code: 1
Oct 10 11:50:00 unknown com.apple.launchd[1] <Warning>: (net.sourceforge.netatalk.afpd) Throttling respawn: Will start in 10 seconds
Oct 10 11:50:10 unknown com.apple.launchd[1] <Error>: (net.sourceforge.netatalk.afpd) posix_spawn("/usr/sbin/afpd", ...): No such file or directory
Oct 10 11:50:10 unknown com.apple.launchd[1] <Warning>: (net.sourceforge.netatalk.afpd) Exited with exit code: 1
Oct 10 11:50:10 unknown com.apple.launchd[1] <Warning>: (net.sourceforge.netatalk.afpd) Throttling respawn: Will start in 10 seconds
Oct 10 11:50:20 unknown com.apple.launchd[1] <Error>: (net.sourceforge.netatalk.afpd) posix_spawn("/usr/sbin/afpd", ...): No such file or directory
Oct 10 11:50:20 unknown com.apple.launchd[1] <Warning>: (net.sourceforge.netatalk.afpd) Exited with exit code: 1
Oct 10 11:50:20 unknown com.apple.launchd[1] <Warning>: (net.sourceforge.netatalk.afpd) Throttling respawn: Will start in 10 seconds
Oct 10 11:50:24 unknown SCHelper[5817] <Notice>: active (but IDLE) sessions
Oct 10 11:50:24 unknown SCHelper[5817] <Notice>:   0x1ed05340 {port = 0x3867, caller = SpringBoard(39):com.apple.preferences, path = /Library/Preferences/SystemConfiguration/preferences.plist}
Oct 10 11:50:24 unknown SCHelper[5817] <Notice>:   0x1ed07760 {port = 0x4027, caller = Preferences(68112):MobileVPN, path = /Library/Preferences/SystemConfiguration/preferences.plist}
Oct 10 11:50:24 unknown SCHelper[5817] <Notice>:   0x1ed058a0 {port = 0x4ddb, caller = SpringBoard(39):com.apple.springboard, path = /Library/Preferences/SystemConfiguration/com.apple.radios.plist}
Oct 10 11:50:30 unknown com.apple.launchd[1] <Error>: (net.sourceforge.netatalk.afpd) posix_spawn("/usr/sbin/afpd", ...): No such file or directory
Oct 10 11:50:30 unknown com.apple.launchd[1] <Warning>: (net.sourceforge.netatalk.afpd) Exited with exit code: 1
Oct 10 11:50:30 unknown com.apple.launchd[1] <Warning>: (net.sourceforge.netatalk.afpd) Throttling respawn: Will start in 10 seconds
Oct 10 11:50:40 unknown com.apple.launchd[1] <Error>: (net.sourceforge.netatalk.afpd) posix_spawn("/usr/sbin/afpd", ...): No such file or directory
Oct 10 11:50:40 unknown com.apple.launchd[1] <Warning>: (net.sourceforge.netatalk.afpd) Exited with exit code: 1
Oct 10 11:50:40 unknown com.apple.launchd[1] <Warning>: (net.sourceforge.netatalk.afpd) Throttling respawn: Will start in 10 seconds
Oct 10 11:50:50 unknown com.apple.launchd[1] <Error>: (net.sourceforge.netatalk.afpd) posix_spawn("/usr/sbin/afpd", ...): No such file or directory
Oct 10 11:50:50 unknown com.apple.launchd[1] <Warning>: (net.sourceforge.netatalk.afpd) Exited with exit code: 1
Oct 10 11:50:50 unknown com.apple.launchd[1] <Warning>: (net.sourceforge.netatalk.afpd) Throttling respawn: Will start in 10 seconds
Oct 10 11:51:00 unknown com.apple.launchd[1] <Error>: (net.sourceforge.netatalk.afpd) posix_spawn("/usr/sbin/afpd", ...): No such file or directory
Oct 10 11:51:00 unknown com.apple.launchd[1] <Warning>: (net.sourceforge.netatalk.afpd) Exited with exit code: 1
Oct 10 11:51:00 unknown com.apple.launchd[1] <Warning>: (net.sourceforge.netatalk.afpd) Throttling respawn: Will start in 10 seconds
Oct 10 11:51:10 unknown com.apple.launchd[1] <Error>: (net.sourceforge.netatalk.afpd) posix_spawn("/usr/sbin/afpd", ...): No such file or directory
Oct 10 11:51:10 unknown com.apple.launchd[1] <Warning>: (net.sourceforge.netatalk.afpd) Exited with exit code: 1
Oct 10 11:51:10 unknown com.apple.launchd[1] <Warning>: (net.sourceforge.netatalk.afpd) Throttling respawn: Will start in 10 seconds
Oct 10 11:51:20 unknown com.apple.launchd[1] <Error>: (net.sourceforge.netatalk.afpd) posix_spawn("/usr/sbin/afpd", ...): No such file or directory
Oct 10 11:51:20 unknown com.apple.launchd[1] <Warning>: (net.sourceforge.netatalk.afpd) Exited with exit code: 1
Oct 10 11:51:20 unknown com.apple.launchd[1] <Warning>: (net.sourceforge.netatalk.afpd) Throttling respawn: Will start in 10 seconds
Oct 10 11:51:30 unknown com.apple.launchd[1] <Error>: (net.sourceforge.netatalk.afpd) posix_spawn("/usr/sbin/afpd", ...): No such file or directory
Oct 10 11:51:30 unknown com.apple.launchd[1] <Warning>: (net.sourceforge.netatalk.afpd) Exited with exit code: 1
Oct 10 11:51:30 unknown com.apple.launchd[1] <Warning>: (net.sourceforge.netatalk.afpd) Throttling respawn: Will start in 10 seconds
Oct 10 11:51:40 unknown com.apple.launchd[1] <Error>: (net.sourceforge.netatalk.afpd) posix_spawn("/usr/sbin/afpd", ...): No such file or directory
Oct 10 11:51:40 unknown com.apple.launchd[1] <Warning>: (net.sourceforge.netatalk.afpd) Exited with exit code: 1
Oct 10 11:51:40 unknown com.apple.launchd[1] <Warning>: (net.sourceforge.netatalk.afpd) Throttling respawn: Will start in 10 seconds
Oct 10 11:51:50 unknown com.apple.launchd[1] <Error>: (net.sourceforge.netatalk.afpd) posix_spawn("/usr/sbin/afpd", ...): No such file or directory
Oct 10 11:51:50 unknown com.apple.launchd[1] <Warning>: (net.sourceforge.netatalk.afpd) Exited with exit code: 1
Oct 10 11:51:50 unknown com.apple.launchd[1] <Warning>: (net.sourceforge.netatalk.afpd) Throttling respawn: Will start in 10 seconds
Oct 10 11:52:00 unknown com.apple.launchd[1] <Error>: (net.sourceforge.netatalk.afpd) posix_spawn("/usr/sbin/afpd", ...): No such file or directory
Oct 10 11:52:00 unknown com.apple.launchd[1] <Warning>: (net.sourceforge.netatalk.afpd) Exited with exit code: 1
Oct 10 11:52:00 unknown com.apple.launchd[1] <Warning>: (net.sourceforge.netatalk.afpd) Throttling respawn: Will start in 10 seconds
Oct 10 11:52:10 unknown com.apple.launchd[1] <Error>: (net.sourceforge.netatalk.afpd) posix_spawn("/usr/sbin/afpd", ...): No such file or directory
Oct 10 11:52:10 unknown com.apple.launchd[1] <Warning>: (net.sourceforge.netatalk.afpd) Exited with exit code: 1
Oct 10 11:52:10 unknown com.apple.launchd[1] <Warning>: (net.sourceforge.netatalk.afpd) Throttling respawn: Will start in 10 seconds
Oct 10 11:52:20 unknown com.apple.launchd[1] <Error>: (net.sourceforge.netatalk.afpd) posix_spawn("/usr/sbin/afpd", ...): No such file or directory
Oct 10 11:52:20 unknown com.apple.launchd[1] <Warning>: (net.sourceforge.netatalk.afpd) Exited with exit code: 1
Oct 10 11:52:20 unknown com.apple.launchd[1] <Warning>: (net.sourceforge.netatalk.afpd) Throttling respawn: Will start in 10 seconds
Oct 10 11:52:30 unknown com.apple.launchd[1] <Error>: (net.sourceforge.netatalk.afpd) posix_spawn("/usr/sbin/afpd", ...): No such file or directory
Oct 10 11:52:30 unknown com.apple.launchd[1] <Warning>: (net.sourceforge.netatalk.afpd) Exited with exit code: 1
Oct 10 11:52:30 unknown com.apple.launchd[1] <Warning>: (net.sourceforge.netatalk.afpd) Throttling respawn: Will start in 10 seconds
Oct 10 11:52:40 unknown com.apple.launchd[1] <Error>: (net.sourceforge.netatalk.afpd) posix_spawn("/usr/sbin/afpd", ...): No such file or directory
Oct 10 11:52:40 unknown com.apple.launchd[1] <Warning>: (net.sourceforge.netatalk.afpd) Exited with exit code: 1
Oct 10 11:52:40 unknown com.apple.launchd[1] <Warning>: (net.sourceforge.netatalk.afpd) Throttling respawn: Will start in 10 seconds
Oct 10 11:52:50 unknown com.apple.launchd[1] <Error>: (net.sourceforge.netatalk.afpd) posix_spawn("/usr/sbin/afpd", ...): No such file or directory
Oct 10 11:52:50 unknown com.apple.launchd[1] <Warning>: (net.sourceforge.netatalk.afpd) Exited with exit code: 1
Oct 10 11:52:50 unknown com.apple.launchd[1] <Warning>: (net.sourceforge.netatalk.afpd) Throttling respawn: Will start in 10 seconds
Oct 10 11:53:00 unknown com.apple.launchd[1] <Error>: (net.sourceforge.netatalk.afpd) posix_spawn("/usr/sbin/afpd", ...): No such file or directory
Oct 10 11:53:00 unknown com.apple.launchd[1] <Warning>: (net.sourceforge.netatalk.afpd) Exited with exit code: 1
Oct 10 11:53:00 unknown com.apple.launchd[1] <Warning>: (net.sourceforge.netatalk.afpd) Throttling respawn: Will start in 10 seconds
Oct 10 11:53:10 unknown com.apple.launchd[1] <Error>: (net.sourceforge.netatalk.afpd) posix_spawn("/usr/sbin/afpd", ...): No such file or directory
Oct 10 11:53:10 unknown com.apple.launchd[1] <Warning>: (net.sourceforge.netatalk.afpd) Exited with exit code: 1
Oct 10 11:53:10 unknown com.apple.launchd[1] <Warning>: (net.sourceforge.netatalk.afpd) Throttling respawn: Will start in 10 seconds
Oct 10 11:53:20 unknown com.apple.launchd[1] <Error>: (net.sourceforge.netatalk.afpd) posix_spawn("/usr/sbin/afpd", ...): No such file or directory
Oct 10 11:53:20 unknown com.apple.launchd[1] <Warning>: (net.sourceforge.netatalk.afpd) Exited with exit code: 1
Oct 10 11:53:20 unknown com.apple.launchd[1] <Warning>: (net.sourceforge.netatalk.afpd) Throttling respawn: Will start in 10 seconds
Oct 10 11:53:30 unknown com.apple.launchd[1] <Error>: (net.sourceforge.netatalk.afpd) posix_spawn("/usr/sbin/afpd", ...): No such file or directory
Oct 10 11:53:30 unknown com.apple.launchd[1] <Warning>: (net.sourceforge.netatalk.afpd) Exited with exit code: 1
Oct 10 11:53:30 unknown com.apple.launchd[1] <Warning>: (net.sourceforge.netatalk.afpd) Throttling respawn: Will start in 10 seconds
Oct 10 11:53:40 unknown com.apple.launchd[1] <Error>: (net.sourceforge.netatalk.afpd) posix_spawn("/usr/sbin/afpd", ...): No such file or directory
Oct 10 11:53:40 unknown com.apple.launchd[1] <Warning>: (net.sourceforge.netatalk.afpd) Exited with exit code: 1
Oct 10 11:53:40 unknown com.apple.launchd[1] <Warning>: (net.sourceforge.netatalk.afpd) Throttling respawn: Will start in 10 seconds
Oct 10 11:53:50 unknown com.apple.launchd[1] <Error>: (net.sourceforge.netatalk.afpd) posix_spawn("/usr/sbin/afpd", ...): No such file or directory
Oct 10 11:53:50 unknown com.apple.launchd[1] <Warning>: (net.sourceforge.netatalk.afpd) Exited with exit code: 1
Oct 10 11:53:50 unknown com.apple.launchd[1] <Warning>: (net.sourceforge.netatalk.afpd) Throttling respawn: Will start in 10 seconds
Oct 10 11:54:00 unknown com.apple.launchd[1] <Error>: (net.sourceforge.netatalk.afpd) posix_spawn("/usr/sbin/afpd", ...): No such file or directory
Oct 10 11:54:00 unknown com.apple.launchd[1] <Warning>: (net.sourceforge.netatalk.afpd) Exited with exit code: 1
Oct 10 11:54:00 unknown com.apple.launchd[1] <Warning>: (net.sourceforge.netatalk.afpd) Throttling respawn: Will start in 10 seconds
Oct 10 11:54:10 unknown com.apple.launchd[1] <Error>: (net.sourceforge.netatalk.afpd) posix_spawn("/usr/sbin/afpd", ...): No such file or directory
Oct 10 11:54:10 unknown com.apple.launchd[1] <Warning>: (net.sourceforge.netatalk.afpd) Exited with exit code: 1
Oct 10 11:54:10 unknown com.apple.launchd[1] <Warning>: (net.sourceforge.netatalk.afpd) Throttling respawn: Will start in 10 seconds
Oct 10 11:54:20 unknown com.apple.launchd[1] <Error>: (net.sourceforge.netatalk.afpd) posix_spawn("/usr/sbin/afpd", ...): No such file or directory
Oct 10 11:54:20 unknown com.apple.launchd[1] <Warning>: (net.sourceforge.netatalk.afpd) Exited with exit code: 1
Oct 10 11:54:20 unknown com.apple.launchd[1] <Warning>: (net.sourceforge.netatalk.afpd) Throttling respawn: Will start in 10 seconds
Oct 10 11:54:30 unknown com.apple.launchd[1] <Error>: (net.sourceforge.netatalk.afpd) posix_spawn("/usr/sbin/afpd", ...): No such file or directory
Oct 10 11:54:30 unknown com.apple.launchd[1] <Warning>: (net.sourceforge.netatalk.afpd) Exited with exit code: 1
Oct 10 11:54:30 unknown com.apple.launchd[1] <Warning>: (net.sourceforge.netatalk.afpd) Throttling respawn: Will start in 10 seconds
Oct 10 11:54:40 unknown com.apple.launchd[1] <Error>: (net.sourceforge.netatalk.afpd) posix_spawn("/usr/sbin/afpd", ...): No such file or directory
Oct 10 11:54:40 unknown com.apple.launchd[1] <Warning>: (net.sourceforge.netatalk.afpd) Exited with exit code: 1
Oct 10 11:54:40 unknown com.apple.launchd[1] <Warning>: (net.sourceforge.netatalk.afpd) Throttling respawn: Will start in 10 seconds
Oct 10 11:54:49 unknown kernel[0] <Debug>: ttyioss1000002: enqueueData rtn (e00002d7)
Oct 10 11:54:50 unknown com.apple.launchd[1] <Error>: (net.sourceforge.netatalk.afpd) posix_spawn("/usr/sbin/afpd", ...): No such file or directory
Oct 10 11:54:50 unknown com.apple.launchd[1] <Warning>: (net.sourceforge.netatalk.afpd) Exited with exit code: 1
Oct 10 11:54:50 unknown com.apple.launchd[1] <Warning>: (net.sourceforge.netatalk.afpd) Throttling respawn: Will start in 10 seconds
Oct 10 11:55:00 unknown com.apple.launchd[1] <Error>: (net.sourceforge.netatalk.afpd) posix_spawn("/usr/sbin/afpd", ...): No such file or directory
Oct 10 11:55:00 unknown com.apple.launchd[1] <Warning>: (net.sourceforge.netatalk.afpd) Exited with exit code: 1
Oct 10 11:55:00 unknown com.apple.launchd[1] <Warning>: (net.sourceforge.netatalk.afpd) Throttling respawn: Will start in 10 seconds
Oct 10 11:55:10 unknown com.apple.launchd[1] <Error>: (net.sourceforge.netatalk.afpd) posix_spawn("/usr/sbin/afpd", ...): No such file or directory
Oct 10 11:55:10 unknown com.apple.launchd[1] <Warning>: (net.sourceforge.netatalk.afpd) Exited with exit code: 1
Oct 10 11:55:10 unknown com.apple.launchd[1] <Warning>: (net.sourceforge.netatalk.afpd) Throttling respawn: Will start in 10 seconds
Oct 10 11:55:20 unknown com.apple.launchd[1] <Error>: (net.sourceforge.netatalk.afpd) posix_spawn("/usr/sbin/afpd", ...): No such file or directory
Oct 10 11:55:20 unknown com.apple.launchd[1] <Warning>: (net.sourceforge.netatalk.afpd) Exited with exit code: 1
Oct 10 11:55:20 unknown com.apple.launchd[1] <Warning>: (net.sourceforge.netatalk.afpd) Throttling respawn: Will start in 10 seconds
Oct 10 11:55:30 unknown com.apple.launchd[1] <Error>: (net.sourceforge.netatalk.afpd) posix_spawn("/usr/sbin/afpd", ...): No such file or directory
Oct 10 11:55:30 unknown com.apple.launchd[1] <Warning>: (net.sourceforge.netatalk.afpd) Exited with exit code: 1
Oct 10 11:55:30 unknown com.apple.launchd[1] <Warning>: (net.sourceforge.netatalk.afpd) Throttling respawn: Will start in 10 seconds
Oct 10 11:55:41 unknown com.apple.launchd[1] <Error>: (net.sourceforge.netatalk.afpd) posix_spawn("/usr/sbin/afpd", ...): No such file or directory
Oct 10 11:55:41 unknown com.apple.launchd[1] <Warning>: (net.sourceforge.netatalk.afpd) Exited with exit code: 1
Oct 10 11:55:41 unknown com.apple.launchd[1] <Warning>: (net.sourceforge.netatalk.afpd) Throttling respawn: Will start in 10 seconds
Oct 10 11:55:51 unknown com.apple.launchd[1] <Error>: (net.sourceforge.netatalk.afpd) posix_spawn("/usr/sbin/afpd", ...): No such file or directory
Oct 10 11:55:51 unknown com.apple.launchd[1] <Warning>: (net.sourceforge.netatalk.afpd) Exited with exit code: 1
Oct 10 11:55:51 unknown com.apple.launchd[1] <Warning>: (net.sourceforge.netatalk.afpd) Throttling respawn: Will start in 10 seconds
Oct 10 11:56:01 unknown com.apple.launchd[1] <Error>: (net.sourceforge.netatalk.afpd) posix_spawn("/usr/sbin/afpd", ...): No such file or directory
Oct 10 11:56:01 unknown com.apple.launchd[1] <Warning>: (net.sourceforge.netatalk.afpd) Exited with exit code: 1
Oct 10 11:56:01 unknown com.apple.launchd[1] <Warning>: (net.sourceforge.netatalk.afpd) Throttling respawn: Will start in 10 seconds
Oct 10 11:56:11 unknown com.apple.launchd[1] <Error>: (net.sourceforge.netatalk.afpd) posix_spawn("/usr/sbin/afpd", ...): No such file or directory
Oct 10 11:56:11 unknown com.apple.launchd[1] <Warning>: (net.sourceforge.netatalk.afpd) Exited with exit code: 1
Oct 10 11:56:11 unknown com.apple.launchd[1] <Warning>: (net.sourceforge.netatalk.afpd) Throttling respawn: Will start in 10 seconds
Oct 10 11:56:21 unknown com.apple.launchd[1] <Error>: (net.sourceforge.netatalk.afpd) posix_spawn("/usr/sbin/afpd", ...): No such file or directory
Oct 10 11:56:21 unknown com.apple.launchd[1] <Warning>: (net.sourceforge.netatalk.afpd) Exited with exit code: 1
Oct 10 11:56:21 unknown com.apple.launchd[1] <Warning>: (net.sourceforge.netatalk.afpd) Throttling respawn: Will start in 10 seconds
Oct 10 11:56:31 unknown com.apple.launchd[1] <Error>: (net.sourceforge.netatalk.afpd) posix_spawn("/usr/sbin/afpd", ...): No such file or directory
Oct 10 11:56:31 unknown com.apple.launchd[1] <Warning>: (net.sourceforge.netatalk.afpd) Exited with exit code: 1
Oct 10 11:56:31 unknown com.apple.launchd[1] <Warning>: (net.sourceforge.netatalk.afpd) Throttling respawn: Will start in 10 seconds
Oct 10 11:56:41 unknown com.apple.launchd[1] <Error>: (net.sourceforge.netatalk.afpd) posix_spawn("/usr/sbin/afpd", ...): No such file or directory
Oct 10 11:56:41 unknown com.apple.launchd[1] <Warning>: (net.sourceforge.netatalk.afpd) Exited with exit code: 1
Oct 10 11:56:41 unknown com.apple.launchd[1] <Warning>: (net.sourceforge.netatalk.afpd) Throttling respawn: Will start in 10 seconds
Oct 10 11:56:51 unknown com.apple.launchd[1] <Error>: (net.sourceforge.netatalk.afpd) posix_spawn("/usr/sbin/afpd", ...): No such file or directory
Oct 10 11:56:51 unknown com.apple.launchd[1] <Warning>: (net.sourceforge.netatalk.afpd) Exited with exit code: 1
Oct 10 11:56:51 unknown com.apple.launchd[1] <Warning>: (net.sourceforge.netatalk.afpd) Throttling respawn: Will start in 10 seconds
Oct 10 11:57:01 unknown com.apple.launchd[1] <Error>: (net.sourceforge.netatalk.afpd) posix_spawn("/usr/sbin/afpd", ...): No such file or directory
Oct 10 11:57:01 unknown com.apple.launchd[1] <Warning>: (net.sourceforge.netatalk.afpd) Exited with exit code: 1
Oct 10 11:57:01 unknown com.apple.launchd[1] <Warning>: (net.sourceforge.netatalk.afpd) Throttling respawn: Will start in 10 seconds
Oct 10 11:57:11 unknown com.apple.launchd[1] <Error>: (net.sourceforge.netatalk.afpd) posix_spawn("/usr/sbin/afpd", ...): No such file or directory
Oct 10 11:57:11 unknown com.apple.launchd[1] <Warning>: (net.sourceforge.netatalk.afpd) Exited with exit code: 1
Oct 10 11:57:11 unknown com.apple.launchd[1] <Warning>: (net.sourceforge.netatalk.afpd) Throttling respawn: Will start in 10 seconds
Oct 10 11:57:21 unknown com.apple.launchd[1] <Error>: (net.sourceforge.netatalk.afpd) posix_spawn("/usr/sbin/afpd", ...): No such file or directory
Oct 10 11:57:21 unknown com.apple.launchd[1] <Warning>: (net.sourceforge.netatalk.afpd) Exited with exit code: 1
Oct 10 11:57:21 unknown com.apple.launchd[1] <Warning>: (net.sourceforge.netatalk.afpd) Throttling respawn: Will start in 10 seconds
Oct 10 11:57:31 unknown com.apple.launchd[1] <Error>: (net.sourceforge.netatalk.afpd) posix_spawn("/usr/sbin/afpd", ...): No such file or directory
Oct 10 11:57:31 unknown com.apple.launchd[1] <Warning>: (net.sourceforge.netatalk.afpd) Exited with exit code: 1
Oct 10 11:57:31 unknown com.apple.launchd[1] <Warning>: (net.sourceforge.netatalk.afpd) Throttling respawn: Will start in 10 seconds
Oct 10 11:57:41 unknown com.apple.launchd[1] <Error>: (net.sourceforge.netatalk.afpd) posix_spawn("/usr/sbin/afpd", ...): No such file or directory
Oct 10 11:57:41 unknown com.apple.launchd[1] <Warning>: (net.sourceforge.netatalk.afpd) Exited with exit code: 1
Oct 10 11:57:41 unknown com.apple.launchd[1] <Warning>: (net.sourceforge.netatalk.afpd) Throttling respawn: Will start in 10 seconds
Oct 10 11:57:51 unknown com.apple.launchd[1] <Error>: (net.sourceforge.netatalk.afpd) posix_spawn("/usr/sbin/afpd", ...): No such file or directory
Oct 10 11:57:51 unknown com.apple.launchd[1] <Warning>: (net.sourceforge.netatalk.afpd) Exited with exit code: 1
Oct 10 11:57:51 unknown com.apple.launchd[1] <Warning>: (net.sourceforge.netatalk.afpd) Throttling respawn: Will start in 10 seconds
Oct 10 11:58:01 unknown com.apple.launchd[1] <Error>: (net.sourceforge.netatalk.afpd) posix_spawn("/usr/sbin/afpd", ...): No such file or directory
Oct 10 11:58:01 unknown com.apple.launchd[1] <Warning>: (net.sourceforge.netatalk.afpd) Exited with exit code: 1
Oct 10 11:58:01 unknown com.apple.launchd[1] <Warning>: (net.sourceforge.netatalk.afpd) Throttling respawn: Will start in 10 seconds
Oct 10 11:58:11 unknown com.apple.launchd[1] <Error>: (net.sourceforge.netatalk.afpd) posix_spawn("/usr/sbin/afpd", ...): No such file or directory
Oct 10 11:58:11 unknown com.apple.launchd[1] <Warning>: (net.sourceforge.netatalk.afpd) Exited with exit code: 1
Oct 10 11:58:11 unknown com.apple.launchd[1] <Warning>: (net.sourceforge.netatalk.afpd) Throttling respawn: Will start in 10 seconds
Oct 10 11:58:21 unknown com.apple.launchd[1] <Error>: (net.sourceforge.netatalk.afpd) posix_spawn("/usr/sbin/afpd", ...): No such file or directory
Oct 10 11:58:21 unknown com.apple.launchd[1] <Warning>: (net.sourceforge.netatalk.afpd) Exited with exit code: 1
Oct 10 11:58:21 unknown com.apple.launchd[1] <Warning>: (net.sourceforge.netatalk.afpd) Throttling respawn: Will start in 10 seconds
Oct 10 11:58:31 unknown com.apple.launchd[1] <Error>: (net.sourceforge.netatalk.afpd) posix_spawn("/usr/sbin/afpd", ...): No such file or directory
Oct 10 11:58:31 unknown com.apple.launchd[1] <Warning>: (net.sourceforge.netatalk.afpd) Exited with exit code: 1
Oct 10 11:58:31 unknown com.apple.launchd[1] <Warning>: (net.sourceforge.netatalk.afpd) Throttling respawn: Will start in 10 seconds
Oct 10 11:58:41 unknown com.apple.launchd[1] <Error>: (net.sourceforge.netatalk.afpd) posix_spawn("/usr/sbin/afpd", ...): No such file or directory
Oct 10 11:58:41 unknown com.apple.launchd[1] <Warning>: (net.sourceforge.netatalk.afpd) Exited with exit code: 1
Oct 10 11:58:41 unknown com.apple.launchd[1] <Warning>: (net.sourceforge.netatalk.afpd) Throttling respawn: Will start in 10 seconds
Oct 10 11:58:51 unknown com.apple.launchd[1] <Error>: (net.sourceforge.netatalk.afpd) posix_spawn("/usr/sbin/afpd", ...): No such file or directory
Oct 10 11:58:51 unknown com.apple.launchd[1] <Warning>: (net.sourceforge.netatalk.afpd) Exited with exit code: 1
Oct 10 11:58:51 unknown com.apple.launchd[1] <Warning>: (net.sourceforge.netatalk.afpd) Throttling respawn: Will start in 10 seconds
Oct 10 11:59:01 unknown com.apple.launchd[1] <Error>: (net.sourceforge.netatalk.afpd) posix_spawn("/usr/sbin/afpd", ...): No such file or directory
Oct 10 11:59:01 unknown com.apple.launchd[1] <Warning>: (net.sourceforge.netatalk.afpd) Exited with exit code: 1
Oct 10 11:59:01 unknown com.apple.launchd[1] <Warning>: (net.sourceforge.netatalk.afpd) Throttling respawn: Will start in 10 seconds
Oct 10 11:59:11 unknown com.apple.launchd[1] <Error>: (net.sourceforge.netatalk.afpd) posix_spawn("/usr/sbin/afpd", ...): No such file or directory
Oct 10 11:59:11 unknown com.apple.launchd[1] <Warning>: (net.sourceforge.netatalk.afpd) Exited with exit code: 1
Oct 10 11:59:11 unknown com.apple.launchd[1] <Warning>: (net.sourceforge.netatalk.afpd) Throttling respawn: Will start in 10 seconds
Oct 10 11:59:21 unknown com.apple.launchd[1] <Error>: (net.sourceforge.netatalk.afpd) posix_spawn("/usr/sbin/afpd", ...): No such file or directory
Oct 10 11:59:21 unknown com.apple.launchd[1] <Warning>: (net.sourceforge.netatalk.afpd) Exited with exit code: 1
Oct 10 11:59:21 unknown com.apple.launchd[1] <Warning>: (net.sourceforge.netatalk.afpd) Throttling respawn: Will start in 10 seconds
Oct 10 11:59:31 unknown com.apple.launchd[1] <Error>: (net.sourceforge.netatalk.afpd) posix_spawn("/usr/sbin/afpd", ...): No such file or directory
Oct 10 11:59:31 unknown com.apple.launchd[1] <Warning>: (net.sourceforge.netatalk.afpd) Exited with exit code: 1
Oct 10 11:59:31 unknown com.apple.launchd[1] <Warning>: (net.sourceforge.netatalk.afpd) Throttling respawn: Will start in 10 seconds
Oct 10 11:59:41 unknown com.apple.launchd[1] <Error>: (net.sourceforge.netatalk.afpd) posix_spawn("/usr/sbin/afpd", ...): No such file or directory
Oct 10 11:59:41 unknown com.apple.launchd[1] <Warning>: (net.sourceforge.netatalk.afpd) Exited with exit code: 1
Oct 10 11:59:41 unknown com.apple.launchd[1] <Warning>: (net.sourceforge.netatalk.afpd) Throttling respawn: Will start in 10 seconds
Oct 10 11:59:51 unknown com.apple.launchd[1] <Error>: (net.sourceforge.netatalk.afpd) posix_spawn("/usr/sbin/afpd", ...): No such file or directory
Oct 10 11:59:51 unknown com.apple.launchd[1] <Warning>: (net.sourceforge.netatalk.afpd) Exited with exit code: 1
Oct 10 11:59:51 unknown com.apple.launchd[1] <Warning>: (net.sourceforge.netatalk.afpd) Throttling respawn: Will start in 10 seconds
Oct 10 12:00:01 unknown com.apple.launchd[1] <Error>: (net.sourceforge.netatalk.afpd) posix_spawn("/usr/sbin/afpd", ...): No such file or directory
Oct 10 12:00:01 unknown com.apple.launchd[1] <Warning>: (net.sourceforge.netatalk.afpd) Exited with exit code: 1
Oct 10 12:00:01 unknown com.apple.launchd[1] <Warning>: (net.sourceforge.netatalk.afpd) Throttling respawn: Will start in 10 seconds
Oct 10 12:00:11 unknown com.apple.launchd[1] <Error>: (net.sourceforge.netatalk.afpd) posix_spawn("/usr/sbin/afpd", ...): No such file or directory
Oct 10 12:00:11 unknown com.apple.launchd[1] <Warning>: (net.sourceforge.netatalk.afpd) Exited with exit code: 1
Oct 10 12:00:11 unknown com.apple.launchd[1] <Warning>: (net.sourceforge.netatalk.afpd) Throttling respawn: Will start in 10 seconds
Oct 10 12:00:21 unknown com.apple.launchd[1] <Error>: (net.sourceforge.netatalk.afpd) posix_spawn("/usr/sbin/afpd", ...): No such file or directory
Oct 10 12:00:21 unknown com.apple.launchd[1] <Warning>: (net.sourceforge.netatalk.afpd) Exited with exit code: 1
Oct 10 12:00:21 unknown com.apple.launchd[1] <Warning>: (net.sourceforge.netatalk.afpd) Throttling respawn: Will start in 10 seconds
Oct 10 12:00:31 unknown com.apple.launchd[1] <Error>: (net.sourceforge.netatalk.afpd) posix_spawn("/usr/sbin/afpd", ...): No such file or directory
Oct 10 12:00:31 unknown com.apple.launchd[1] <Warning>: (net.sourceforge.netatalk.afpd) Exited with exit code: 1
Oct 10 12:00:31 unknown com.apple.launchd[1] <Warning>: (net.sourceforge.netatalk.afpd) Throttling respawn: Will start in 10 seconds
Oct 10 12:00:41 unknown com.apple.launchd[1] <Error>: (net.sourceforge.netatalk.afpd) posix_spawn("/usr/sbin/afpd", ...): No such file or directory
Oct 10 12:00:41 unknown com.apple.launchd[1] <Warning>: (net.sourceforge.netatalk.afpd) Exited with exit code: 1
Oct 10 12:00:41 unknown com.apple.launchd[1] <Warning>: (net.sourceforge.netatalk.afpd) Throttling respawn: Will start in 10 seconds
Oct 10 12:00:51 unknown com.apple.launchd[1] <Error>: (net.sourceforge.netatalk.afpd) posix_spawn("/usr/sbin/afpd", ...): No such file or directory
Oct 10 12:00:51 unknown com.apple.launchd[1] <Warning>: (net.sourceforge.netatalk.afpd) Exited with exit code: 1
Oct 10 12:00:51 unknown com.apple.launchd[1] <Warning>: (net.sourceforge.netatalk.afpd) Throttling respawn: Will start in 10 seconds
Oct 10 12:01:01 unknown com.apple.launchd[1] <Error>: (net.sourceforge.netatalk.afpd) posix_spawn("/usr/sbin/afpd", ...): No such file or directory
Oct 10 12:01:01 unknown com.apple.launchd[1] <Warning>: (net.sourceforge.netatalk.afpd) Exited with exit code: 1
Oct 10 12:01:01 unknown com.apple.launchd[1] <Warning>: (net.sourceforge.netatalk.afpd) Throttling respawn: Will start in 10 seconds

Comments

  1. Reggie Seagraves 2011-10-10

    In SingleColumnPicker, the variable 'box' is global, and is reused upon the second call to SingleColumnPicker, not achieving what the client expects at all. Additionally, you can't stick more than one picker up on the screen at once.
  2. Jon Alter 2011-10-10

    A better repro case

    App crashes if you do not add the rows to the picker immediately after adding the picker to the window.

    Steps to reproduce

    Step 1: run the code below Step 2: click the test button Step 3: notice the app crash It will work just fine if you add the picker to the window and add the data to the picker at the same time.
       var win = Titanium.UI.createWindow({
       	backgroundColor : 'blue'
       });
       win.open();
       
       var box = Ti.UI.createPicker({
       	top : 0,
       	selectionIndicator : true,
       });
       
       var btn = Ti.UI.createButton({
       	title : 'test',
       	height : 50,
       	width : 200,
       	bottom : 80
       });
       
       win.add(box);
       btn.addEventListener('click', function(e) {
       	// win.add(box);
       	box.add([{
       		title : '123'
       	}, {
       		title : '12344'
       	}]);
       });
       win.add(btn);
       
  3. Blain Hamon 2011-10-11

    This looks like a race condition of setting the data in the background while trying to redraw in the foreground. But add is one of those that ensures the main thread. Hrm.
  4. Jon Alter 2011-10-11

    Lowering the customer priority due to workaround.

    Workaround:

    Create the picker and add the rows immediately after.
       var win = Titanium.UI.createWindow({
       	backgroundColor : 'blue'
       });
       win.open();
       
       var btn = Ti.UI.createButton({
       	title : 'test',
       	height : 50,
       	width : 200,
       	bottom : 80
       });
       
       btn.addEventListener('click', function(e) {
       	var box = Ti.UI.createPicker({
       		top : 0,
       		selectionIndicator : true,
       	});
       	box.add([{
       		title : '123'
       	}, {
       		title : '12344'
       	}]);
       	win.add(box);
       });
       win.add(btn);
       
  5. Lee Morris 2017-07-18

    Closing ticket due to time passed and lack of progress for a number of years. Please open a new ticket if there are any problems.

JSON Source